Answer Posted / braj bhasker singh
Four Types of Session Types-
1. InProc mode- which stores session state in memory on the
Web server. This is the default.
2.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.
3.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.
4.Custom mode- which enables you to specify a custom
storage provider.
5. Off mode- which disables session state.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How would you enable impersonation in the web.config file?
What is viewstate? What does the “enableviewstate” property do?
Which control has default post back is enabled(true)?
Explain page output caching?
Explain server-side scripting?
How many types of sessions are there in asp net?
Is it right that ASP.NET Web API has replaced WCF?
Explain about ASP.NET?
Explain asp.net web forms.
How can we create custom controls in asp net?
What is role-based security in asp.net?
What is synchronous and Asynchronous post back ?
What is the difference between stored procedure vs function?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
What is skin in asp.net?