ASP.net session state service information

前端 未结 3 1728
不知归路
不知归路 2021-01-01 00:24

Where can you get information on the ASP.NET State Service e.g. how it works, performance, behaviour characteristics etc. Have looked on internet but cant find in depth info

3条回答
  •  無奈伤痛
    2021-01-01 00:30

    Programmatically, session state is nothing more than memory in the shape of a dictionary or hash table, e.g. key-value pairs, which can be set and read for the duration of a user's session.

    Check following links for more details :

    http://msdn.microsoft.com/en-us/library/ms972429.aspx

    http://msdn.microsoft.com/en-us/library/ms178581(VS.80).aspx

提交回复
热议问题