Saturday, July 21, 2007

State Management : Session State

ASP.net session state identifies requests received from the same browser during a limited period of time as a session

Provides the ability to persist variable values for the duration of that session
Session variables can be accessed/modified using the session property

Set a session value: Session[“FirstName”] = FirstName.Text;

No comments: