Types of values mode can hold session state in Web.Config?

Answers were Sorted based on User's Feedback



Types of values mode can hold session state in Web.Config?..

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

Types of values mode can hold session state in Web.Config?..

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

Types of values mode can hold session state in Web.Config?..

Answer / bala

<sessionstate mode="inproc"> or
<sessionstate mode="stateserver"> or
<sessionstate mode="sqlserver"> or

Is This Answer Correct ?    24 Yes 2 No

Types of values mode can hold session state in Web.Config?..

Answer / murugavel

custom
inproc
off
sqlserver
stateserver

Is This Answer Correct ?    13 Yes 6 No

Types of values mode can hold session state in Web.Config?..

Answer / nilesh lende

View state: values are stored automatically hidden field in
client side

Is This Answer Correct ?    5 Yes 12 No

Types of values mode can hold session state in Web.Config?..

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

Post New Answer

More ASP.NET Interview Questions

What is is post back property in asp net?

0 Answers  


How to implement Authentication and Authorization?

0 Answers   QuestPond,


Types of caching. How to implement caching?

2 Answers   Microsoft,


How would you get ASP.NET running in Apache web servers - why would you even do this?

1 Answers   Siebel Systems,


What is loop in asp.net?

0 Answers  


How you can manage the state of application at the server side in ASP.NET?

0 Answers  


What is boxing and unboxing ?

7 Answers   Accenture, Infosys, MedTek,


Write a code for "RequiredFieldValidator" in java script

5 Answers   Wipro,


Differentiate between a page theme and a global theme?

0 Answers  


Why viewstate is used in asp.net?

0 Answers  


Is viewstate secure?

0 Answers  


What is the main difference between a static page and a dynamic page?

2 Answers  


Categories