Where do you specify session state mode in ASP.NET ?

Q

.NET INTERVIEW QUESTIONS - Where do you specify session state mode in ASP.NET ?

✍: Guest

A

The following code explains about specifying session state mode in ASP.NET.
<sessionState mode=”SQLServer”
stateConnectionString=”tcpip=192.168.1.1:42424"
sqlConnectionString=”data source=192.168.1.1; Integrated
Security=SSPI”
cookieless=”false”
timeout=”20"
/>

Here the session state mode is specified for SQL SERVER.

2009-06-16, 7089👍, 0💬