Where is the default Session data is stored in ASP.Net?
InProcess
StateServer
Session Object
all of the above
Please reply
Printable View
Where is the default Session data is stored in ASP.Net?
InProcess
StateServer
Session Object
all of the above
Please reply
By default, a cookie gets sent to the client, containing a Session ID, which matches a Session ID for a session variable... so the default is InProc.
Read about it here.
http://msdn.microsoft.com/en-us/library/ms178586.aspx