What is meant by state management?

Questions by mudduswamy   answers by mudduswamy

Showing Answers 1 - 9 of 9 Answers

shiva

  • Mar 6th, 2007
 

state management is maintane the information about the client towards the server is called statemangement, in asp.net cookies,sessions,application,viewstate.

  Was this answer useful?  Yes

pooppandi

  • Mar 20th, 2007
 

State management is management of state about the client(s) at server in ASP.Net

State management can use any of the following to maintain the state
1. Cookies
2. Views (or viewstate)
3. Sessions
4. Applications
5. Databases (in Shared environment)
6. Hidden Fields

  Was this answer useful?  Yes

kirangiet

  • Oct 23rd, 2009
 

By default HTTP is a stale less protocol. It means it considers each request
as a new request. Solution for this problem is state management.


State Management is a technique used to maintain the state of between HTTP
Request and Response.


There are two ways one can maintain state.


1) Client Side State Management: It includes Cookies, Query String, Hidden
Field, View State, Control State, HttpContext.Current.Item


2) Server Side State Management: It Includes Application Object, Cache
Object, Session State, Profile Properties


Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions