top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Where does session stored if cookie is disabled on client’s machine?

+6 votes
290 views
Where does session stored if cookie is disabled on client’s machine?
posted Dec 11, 2014 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

If you want to disable the use of cookies in your ASP.NET application and still make use of session state, you can configure your application to store the session identifier in the URL instead of a cookie by setting the cookieless attribute of the sessionState configuration element to true, or to UseUri, in the Web.config file for your application.

The following code example shows a Web.config file that configures session state to use cookieless session identifiers.

        <configuration>
          <system.web>
          <sessionState 
          cookieless="true"
          regenerateExpiredSessionId="true"
          timeout="30" />
        </system.web>
      </configuration>
answer Dec 14, 2014 by Shivaranjini
...