In general, any (typical) web application is stateless. It means that when an event occurs (any event like button click, page load) the web page communicates with the web server using HTTP or HTTPS protocol and gets the response. After getting the response web page destroys and recreates.
Along with the page, all controls in the page recreates. Between this process, the data exists in the controls will get lost. So, to retain the values of the controls we use state management techniques in ASP.Net.
We have different techniques in ASP.Net to handle state management.
Along with the page, all controls in the page recreates. Between this process, the data exists in the controls will get lost. So, to retain the values of the controls we use state management techniques in ASP.Net.
We have different techniques in ASP.Net to handle state management.
State Management is two Types
- Client-side Management
- Server-side Management
- View state
- Hidden fields
- Cookies
- Control State
- Query Strings
Server-side Management
- Session State
- Application State




SQL Server
C#.Net
ASP.Net
ADO.Net
jQuery
No comments:
Post a Comment