![]() |
![]() |
![]() |
|
Passing Values from Aspx to AspxAlthough ASP.NET usually submits data to the current page for processing, there are times when you need to pass values from the controls on one page to controls or routines on another ASP.NET page. This is a cookbook style tutorial that shows you how to pass from one page to another. For a deeper explanation, see the Microsoft Help file references at the bottom of the page.
|
|||


Public ReadOnly Property FirstName() As String
Get
Return TextBox1.Text
End Get
End PropertyPublic ReadOnly Property LastName() As String
Get
Return TextBox2.Text
End Get
End Property







For more information, view
ms-help://MS.NETFrameworkSDK/cpguidenf/html/cpconpassingservercontrolvaluesbetweenpages.htm