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!!!
Printable View
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!!!
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