|
-
February 23rd, 2006, 12:18 AM
#1
Declaring session Variables
hi
i want to pass some values from one form to another using session variables
how to declare them in web.config file
i am new to this
please help me out!!!
-
February 23rd, 2006, 01:43 AM
#2
Re: Declaring session Variables
Hi,
open gloal.aspx
you find this,
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session is started
session("data_1")="This is data"
session("data_2")=999
End Sub
when session starts values are assigned.
when you want this values can access any where in the project
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
|