Session in ASP.NET

http://www.codeproject.com/KB/aspnet/ExploringSession.aspx [*******Code & Explanation]

http://msdn.microsoft.com/en-us/library/system.web.sessionstate.aspx –>

The System.Web.SessionState
namespace supplies classes and interfaces that enable storage of data
specific to a single client within a Web application on the server. The
session-state data is used to give the client the appearance of a
persistent connection with the application. State information can be
stored within local process memory or, for Web farm configurations, it
can be stored out of process using either the ASP.NET State service or a
Microsoft SQL Server database.

2.Session state can be used with clients that do not support cookies.
ASP.NET can be configured to encode a session ID in the URL string that
is transmitted between the client and the server.

Leave a comment

Filed under ASP.NET

Leave a comment