1
Answer

How to get the property value and use in another page

Pinku

Pinku

4y
518
1
Public Property Test1() As String
Get
Return Me.ResumeElements.Education.Value
End Get
Set(ByVal Value As String)
Me.ResumeElements.Education.Value = Value
If Me.ResultCode = Neo.ErrorCodes.ValidationFailure Then
' Clear the result code - validation failure is acceptable for this field
Me.ResultCode = Neo.ErrorCodes.None
End If
End Set
End Property
 
i need to get  this eduction value  store in something and i want to use in another page but i cant use any session management technnique .its in vb.net
Answers (1)