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

Explain Authentication mechanism in dotnet

0 Answers   BirlaSoft,


How to do parallel database export in remote SQL Server in ESSL time track. It is working for local server but not working for remote SQL Server

0 Answers   CTPL,


What is _viewstart?

0 Answers  


What is asp.net file?

0 Answers  


What is reflection and disadvantages of reflection?

6 Answers   Microsoft,


How do you add a javascript function for a link button in a datagrid ?

4 Answers   Microsoft,


How to stop the inheritance?

2 Answers   TCS,


How do you set language in web.cofig ?

3 Answers   Keane India Ltd,


What is the Global.asax used for?

7 Answers   Siebel Systems,


What is webresource axd?

0 Answers  


Your ASP.NET application displays sales data on a page. You want to improve performance by holding the page in memory on the server for one hour. You want to ensure that the page is flushed from memory after one hour, and that the page is re-created when the next request for the page is received. What should you do? A . Initialize a new instance of the Cache class in the Application.Start event handler. B . Initialize a new instance of the Timer class in the Page.Load event handler. C . Set the Duration attribute of the OutputCache directive in the page. D . In the Web.config file, set the timeout attribute of the sessionState element.

5 Answers   ADITI, Syntax Softtech,


What event handlers can I include in Global.asax ?

1 Answers  


Categories