Hi,
Where do the Session State information be stored?
Thank you
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dhaval PatelPosted May 29, 2012, 6:16 AM
Example of Session ,
Session["FirstName"] = FirstNameTextBox.Text;
please see below link for Session state more informationApplication state, which stores variables that can be accessed by all users of an ASP.NET application.
Profile properties, which persists user values in a data store without expiring them.
ASP.NET caching, which stores values in memory that is available to all ASP.NET applications.
View state, which persists values in a page.
Cookies.
The query string and fields on an HTML form that are available from an HTTP request.
http://msdn.microsoft.com/en-us/library/ms178586.aspx
This post help you than mark as " Accepted Answer ".