hello
this code
Public Class Location
Public Property CountryName() As String
Get
Return m_CountryName
End Get
Set(value As String)
m_CountryName = value
End Set
End Property
Private m_CountryName As String
End Class
how to display in page load
Go to the complete details ...