InterviewSolution
Saved Bookmarks
| 1. |
Explain Cookie-less Session in ASP.NET? |
|
Answer» Sessions are used in ASP.NET applications for state management. Sessions also make use of COOKIES to associate sessions with the correct user. But when BROWSER cookies are turned off then in that case COOKIE-less sessions are used. It APPENDS the values to the browser’s URL that is required to associate with the user. By default sessions use a cookie in the background, to enable cookie-less sessions, the following settings are required to make in web.config file. <sessionState cookieless="true" />The possible options to set cookieless options are:
|
|