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 directive in asp net?
how to debug web services on consumer side?
what is reference type to value type.
What are query strings used for?
What is query string? What are its advantages and limitations?
What is the question mark in a url?
how can you handle "control is not part of this page " error?
What is difference between abstract class and an interface?
In which form does the dataset store data in it?
3 Answers Verinon Technology Solutions,
how can i am search the data from database? just like google
What are the memory-mapped files?
What is http post and http get?