Tuesday, November 20, 2012

Cookie less Sessions in asp.net 4.0

 In ASP.NET we are using cookies for saving Session ID, for this we need to check the tag in web.config file
<sessionstate cookieless="false">
 Default is False. Session IDS saves in Cookies.

if we use <sessionstate cookieless="true"> here we are using URL for saving session IDS of sessions in 
asp.net.

No comments:

Post a Comment