0 votes
in Azure by
How do you handle session states in Windows Azure?

1 Answer

0 votes
by

There are three ways of managing session states in Windows Azure.

i. In-Proc, which saves session state in the memory of each web server.

ii. State Server, which maintains the state of a session in another process( ASP.NET state service).

iii. SQL Server, that keeps session state in a database.

...