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
What is the base class from which web forms are inherited?
What are Authentication and Authorization?
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool
Can we create a multiple user simultaneously ?
What is sta?
What is the difference between mechine.config and web.config?
How do we implement bundling in MVC?
Does google crawl redirects?
What is postback request?
Differentiate between namespace and assembly.
Explain how cookies work.
What is the application pool?
Define viewstate in .net?
What are Master Pages in ASP.NET?
How to display Alert in ASP.NET