Saved Bookmarks
| 1. |
What Is Cookie Less Session? How It Works? |
|
Answer» By default, ASP.NET will store the session state in the same process that processes the request, just as ASP does. If COOKIES are not AVAILABLE, a session can be tracked by ADDING a session identifier to the URL. This can be ENABLED by setting the following: sessionstate cookieless="true"By default, ASP.NET will store the session state in the same process that processes the request, just as ASP does. If cookies are not available, a session can be tracked by adding a session identifier to the URL. This can be enabled by setting the following: |
|