locked
what is state management? RRS feed

  • Question

  • User34925112 posted

    please tell me in detail about state management.

    Thursday, February 5, 2015 6:43 AM

Answers

  • User-37275327 posted

    In web architecture, every request is new (HTTP known as stateless) and there should be ways to keep preserve data on round trips. This is what is called state management.

    Following are popular ways

    • View state
    • Control state
    • Hidden fields
    • Cookies
    • Query strings
    • Application state
    • Session state
    • Profile Properties

    For more info

    https://msdn.microsoft.com/en-us/library/75x4ha6s(v=vs.140).aspx

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Thursday, February 5, 2015 9:11 PM

All replies

  • User1597691454 posted

    Kindly go throught this 

    http://www.c-sharpcorner.com/UploadFile/2072a9/state-management-in-Asp-Net/

    Thursday, February 5, 2015 6:57 AM
  • User-37275327 posted

    In web architecture, every request is new (HTTP known as stateless) and there should be ways to keep preserve data on round trips. This is what is called state management.

    Following are popular ways

    • View state
    • Control state
    • Hidden fields
    • Cookies
    • Query strings
    • Application state
    • Session state
    • Profile Properties

    For more info

    https://msdn.microsoft.com/en-us/library/75x4ha6s(v=vs.140).aspx

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Thursday, February 5, 2015 9:11 PM