Types of values mode can hold session state in Web.Config?
Answer Posted / wasim
Types of values mode can hold in sesssion state are:
-InProc :-which stores session state in memory on the Web
server. This is the default.
-StateServer :-which stores session state in a separate
process called the ASP.NET state service.
-SQLServer :-stores session state in a SQL Server database.
-Custom :-which enables to specify a custom storage
provider.
-Off :- which disables session state.
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
How do u deploy your asp.net application?
What is Web API?
where can i gather the materials for MCP certification
Name some asp objects?
Give an example of what might be best suited to place in the application_start and session_start subroutines?
What is the difference between system.stringbuilder and system.string
What is global.asax file used for?
How you can access the properties and controls of master pages from content pages?
How many types of session state management options available in asp.net?
Explain a program using code nuggets to create a simple application? : asp.net mvc
How do you declare static variable?
What is Forms Authentication in ASP.NET?
Which platform does Microsoft .NET use for exchanging data between applications?
How will you maintain versioning in asp.net 2.0?
How to implement role based security in asp.net mvc? : Asp.Net MVC