Hi,
I am been trying to see getter and setter for example the guid. Just to confirm, this getter and setter property is only for some value I constantly need it within the same page, right?
For example, I have this code below:
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not IsPostBack Then
Student.StudentGUID = Request.QueryString("ID")
End If
End Sub
And whenever I need to get StudentGUID, I just need to put in below instead of using class variable, right?
Student.StudentGUID
Go to the complete details ...