How i can declare about variable which i can access it from other WebForm,in the same session
How i can declare about variable which i can access it from other WebForm,in the same session
Session("MyVariable") = "hello world"
Dim myValue As String = Session("MyVariable").ToString()
or C#:
Session["MyVariable"] = "hello world";
string myValue = Session["MyVariable"].ToString();