Just a quickie
If i am encapsulating a user input in VB.NET but then taking the input and making it a session variable, does that defeat the purpose of encapsulation since a session variable isnt private?
consider below code:
Public Property View() As String
Get
Return Session("intView")
End Get
Set(ByVal value As String)
Session("intView") = value
End Set
End Property