server side state mgmt
-
May i know what is the difference between State server and SQL server modes and also about Inproc? In which scenarios they are used? Tell me in which scenarios they are used? Thanks in advance,
pavan...
pavanteja wrote:
Inproc
Stores in the memory. If no session mode is specified, this will be default
pavanteja wrote:
State server
Stores session state in another process called ASP.NET state service. Ensure the session availability after restarting the webapplication.
pavanteja wrote:
SQL server modes
Stores in SQL Server database. Check this[^] article to get an idea about how to choose the best method
-
pavanteja wrote:
Inproc
Stores in the memory. If no session mode is specified, this will be default
pavanteja wrote:
State server
Stores session state in another process called ASP.NET state service. Ensure the session availability after restarting the webapplication.
pavanteja wrote:
SQL server modes
Stores in SQL Server database. Check this[^] article to get an idea about how to choose the best method
-
that is ok with me........But may i know what is difference between state server and SQL server.........In wat cases they use......I mean the need?
pavan...
Please go through the link I have given. It explains that in last section
-
Please go through the link I have given. It explains that in last section