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 will you do windows authentication and what is the namespace? If a user is logged under integrated windows authentication mode, but he is still not able to logon, what might be the possible cause for this? In ASP.Net application how do you find the name of the logged in person under windows authentication?
What is _dopostback in asp net?
How can we access static variable?
Can we create a multiple user simultaneously ?
What language is asp.net written in?
What is the use of asp.net web api?
What is the size of Get method and how much data it can store?
How many languages are supported by .NET at present time?
Explain what is postback in asp. Net?
Will the asp.net validators run in server side or client side?
In asp.net, how can you validate drop down box?
Is data edited in the Repeater control?
What are resource file and how do we generate resource file?
Does asp.net still recognize the global.asa file?
What are the various types of cookies in asp.net?