C# Curator
What are the different ways of state management in ASP.NET? What are the points a coder should keep in mind while implementing state management techniques?
By C# Curator in ASP.NET on May 05 2010
  • zxcoder
    Jun, 2010 2

    State management is how you maintain values between method calls . there is server side and client side methods of doing this . client side method is when you store these values on the client computer itself by embedding the information in a  web page , URL or cookie . Server side state management is when you track the user with a cookie or URL but maintain the values on the server. if the state management information is stored on the client , that information has to be submitted with each and every request to the server by the client . Depending on the exact problem you are trying to solve , this effectively what determines the state management technique to use.

    for example tracking the goods in shopping basket of a website customer can be done using the server side session state whereas maintaining non sensitive information like web page customization can be kept in a cookie saved on the client.

    By the way do you have a specific problem that you are trying to solve ?

     

    • 0
  • tovvala chandrashekar
    May, 2010 29

    They are Two Ways OF StateMangement;
    1:ServerSide State Mangement;
    2:Client Side StateMangement

    ServerSide StateMangement:
    SessionState:
    ApplicationState:

    ClientSide  StateMangement:
    1:ViewState;
    2:QueryString;
    3.Cokkies
    4:HiddenFields

    Actual StateSideMangement Come Into Picture To Maintain State of Object;

    As we use HttpRequest And HttpResponse; We Cannot mantain state of object To Matain state or retain value of obect we state Side Management;

    • 0
  • C# Curator
    May, 2010 5

    niques?

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS