Pinku

Pinku

  • NA
  • 227
  • 38.8k

How to get the property value and use in another page

Apr 20 2020 10:44 AM
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)