javascript
Brief description  about Online courses   join in Online courses
View Mahadev Kumar Sahu 's Profile

State Management in ASP.NET

State Management
Type of state management in ASP.NET
1.InProc(Where session objects stored wit in IIS server)
2.OutProc(Where session objects store out of the server)
a.State Server
b.SQL server

This can be configure in web.config file .
Asked by Mahadev Kumar Sahu | Jun 1, 2012 |  Reply now
Replies (1)
View mahadev-kumar sahu 's Profile
State management is implemented in order to retain information about the user requests. Web pages are stateless. Each request creates new page without retaining any previous information about the user requests. ASP.NET supports several State management techniques to maintain state information.

State management in ASP.NET can be classified into
Client-side state management
Server-side state management
Jun 1, 2012