No Query Strings Needed
.NET allows you to reference most anything from one page to any page.
An example:
An example:
Page1.aspx
Public Shared MyVariableThatIWant_ToPass as string = "secret information"
OnAnyOtherPage. aspx
Dim TheSecretFromPage1 as string
TheSecretFromPage1 = MyProject.Page1. MyVariableThatIW_antToPass
Comments