Types of values mode can hold session state in Web.Config?
Answers were Sorted based on User's Feedback
Answer / monikandan
Session mode in web config fiel
<session mode ='InProc'> or
<session mode ='stateserver'> or
<session mode ='sql server'> or
Is This Answer Correct ? | 46 Yes | 1 No |
Answer / 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 |
Answer / bala
<sessionstate mode="inproc"> or
<sessionstate mode="stateserver"> or
<sessionstate mode="sqlserver"> or
Is This Answer Correct ? | 24 Yes | 2 No |
Answer / nilesh lende
View state: values are stored automatically hidden field in
client side
Is This Answer Correct ? | 5 Yes | 12 No |
Answer / srujana
there r three types of values mode can hold session state
in we.config
<authentication mode="forms">
<authentication mode="windows">
<authentication mode="passport">
Is This Answer Correct ? | 8 Yes | 57 No |
What is is post back property in asp net?
How to implement Authentication and Authorization?
Types of caching. How to implement caching?
How would you get ASP.NET running in Apache web servers - why would you even do this?
What is loop in asp.net?
How you can manage the state of application at the server side in ASP.NET?
What is boxing and unboxing ?
7 Answers Accenture, Infosys, MedTek,
Write a code for "RequiredFieldValidator" in java script
Differentiate between a page theme and a global theme?
Why viewstate is used in asp.net?
Is viewstate secure?
What is the main difference between a static page and a dynamic page?