Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For Webform1.aspx (the sending page)
-----------------------------
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
'sessions can be anything
Session("Testing") = "This is a session test."
'querystrings can only be strings
Response.Redirect("Webform2.aspx?MyString=This is a query string test.", False)
End Sub
--------------------------------
For Webform2.aspx (the receiving page)
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'sessions can be anything, mine is a string
Dim mySession As String = Session("Testing")
'this can only be a string
Dim myQueryString As String =
Request.QueryString("MyString")
End Sub