|
-
Jul 13th, 2003, 08:49 AM
#1
Thread Starter
Member
How i can declare about variable which i can access it from other WebForm
How i can declare about variable which i can access it from other WebForm,in the same session
-
Jul 13th, 2003, 11:26 AM
#2
PowerPoster
Session("MyVariable") = "hello world"
Dim myValue As String = Session("MyVariable").ToString()
or C#:
Session["MyVariable"] = "hello world";
string myValue = Session["MyVariable"].ToString();
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|