Wednesday, September 9, 2009

.NET Session Variables

Simply use
Session["myVariable"] = myValue;
to store the value.
Use
myValue = Session["myVariable"]
to retrieve the session value.

No comments:

Post a Comment