how many session modes are available?some brief explnation
Answer Posted / chandra prakash
There are Five Session State Modes :
InProc mode, which stores session state in memory on the Web server. This is the default.
StateServer mode, which stores session state in a separate process called the ASP.NET state service. This ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers in a Web farm.
SQLServer mode stores session state in a SQL Server database. This ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers in a Web farm.
Custom mode, which enables you to specify a custom storage provider.
Off mode, which disables session state.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
How can you handle errors in Web API?
What are the features of asp net?
What is session mode in asp.net?
What is asp.net introduction?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
What is the meaning of TestApi?
How to sign out from forms authentication?
Explain how can we inherit a static variable?
Explain automatic memory management in .net.
How is mvc different from asp.net? : Asp.Net MVC
Define dll hell?
What is difference between rest and soap?
Write a code snippet to implement the indentation in json in web api.
What is side-by-side execution? Can two applications, one using a private assembly and other using a shared assembly, be stated as side-by-side executables?
What are the events that happen when a client requests an asp.net page from iis server?