Definition - State Management can be defined as the technique or the way by which we can maintain / store the state of the page or application until the User's Session ends.
ASP.NET provides us with 2 ways to manage the state of an application. It is basically divided into the 2 categories:
Client Side State Management.
Server Side State Management.
Client Side State Management - It is a way in which the information which is being added by the user or the information about the interaction happened between the user and the server is stored on the client's machine or in the page itself. The server resources (e.g. server's memory) is not at all utilized during the process. This management technique basically makes use of the following: View StateHidden FieldsQuery StringCookies
Server Side State Management - It is another way which ASP.NET provides to store the user's specific information or the state of the application on the server machine. It completely makes use of server resources (the server's memory) to store information.
This management technique basically makes use of the following:
Answers
Definition - State Management can be defined as the technique or the way by which we can maintain / store the state of the page or application until the User's Session ends.
ASP.NET provides us with 2 ways to manage the state of an application. It is basically divided into the 2 categories:
Client Side State Management - It is a way in which the information which is being added by the user or the information about the interaction happened between the user and the server is stored on the client's machine or in the page itself. The server resources (e.g. server's memory) is not at all utilized during the process.
This management technique basically makes use of the following:
View StateHidden FieldsQuery StringCookies
Server Side State Management - It is another way which ASP.NET provides to store the user's specific information or the state of the application on the server machine. It completely makes use of server resources (the server's memory) to store information.
This management technique basically makes use of the following:
@pallav
March 04,2016 At 02:34 PM
Solution #1