|
|
Browse by Tags
All Tags » cookies » Sessions (RSS)
-
pragya_chaubisa:hi, can anyone tell me about session variable
and its use with example
You can save data in session variable for as long as the session is active. to add a value to session variable you can use Session.Add("SOMETHING","somevalue")
or you can also add it like
Session("Stocks") = "MSFT; ...
|
|
|