Priti Kumari
In asp.net where stored default session id?
By Priti Kumari in ASP.NET on Dec 24 2013
  • Manav Pandya
    Jul, 2016 10

    Session and Cookie both are differ from each other , session limit is limited to specific user interaction while cookie may be permanent or temporary stored in browser .

    • 0
  • Manav Pandya
    Jul, 2016 10

    Session and Cookie both are differ from each other , session limit is limited to specific user interaction while cookie may be permanent or temporary stored in browser .

    • 0
  • Manav Pandya
    Jul, 2016 10

    Session and Cookie both are differ from each other , session limit is limited to specific user interaction while cookie may be permanent or temporary stored in browser .

    • 0
  • Manav Pandya
    Jul, 2016 10

    Session and Cookie both are differ from each other , session limit is limited to specific user interaction while cookie may be permanent or temporary stored in browser .

    • 0
  • Ganesh Saraf
    Mar, 2015 12

    By Default Session Id is Stored in Client m/c in the form of text file.It is Called Cookie. If session is Cookie less the that is append to Url .

    • 0
  • Roymon TP
    Oct, 2014 9

    By default session id is stored in cookies.If cookies is disabled ,it will append to the url of the page.

    • 0
  • Roymon TP
    Oct, 2014 9

    By default session id is stored in cookies.If cookies is disabled ,it will append to the url of the page.

    • 0
  • Roymon TP
    Oct, 2014 9

    By default session id is stored in cookies.If cookies is disabled ,it will append to the url of the page.

    • 0
  • Vithal Wadje
    Jan, 2014 12

    I think you wants know about default session mode,every Asp.net default session mode is "Inproc" and session values are stored in a cookies variable.

    • 0
  • rakesh chaudhari
    Jan, 2014 6

    ASP.NET will store session information in memory inside of the worker process (InProc), typically w3wp.exe. There are other modes for storing session, such as Out of Proc and a SQL Server

    • 0
  • rakesh chaudhari
    Jan, 2014 6

    ASP.NET will store session information in memory inside of the worker process (InProc), typically w3wp.exe. There are other modes for storing session, such as Out of Proc and a SQL Server

    • 0
  • Abhay Shanker
    Dec, 2013 30

    Variables put into Session are stored wherever the SessionStateProvider is configured to store them. The default SessionStateProvideruses what's referred to as In Process (InProc) Session and the storage location for this is in server memory, inside the memory space of the ASP.NET worker process.You can configure your own SessionStateProvider to store Session variables elsewhere, such as out of process, in a database.Application variables are stored in ApplicationState which is also stored in the memory space of the ASP.NET worker process.

    • 0
  • Mahesh Alle
    Dec, 2013 27

    By default, SessionID values are stored in a cookie. However, you can also configure the application to store SessionID values in the URL for a "cookieless" session.More clearly as below:- 1. In ASP.NET, you have a Session cookie. 2. This cookie is used to identify which session is yours, but doesn't actually contain the session information. 3. By default, ASP.NET will store session information in memory inside of the worker process (InProc), typically w3wp.exe. 4. There are other modes for storing session, such as Out of Proc and a SQL Server. 5. ASP.NET by default uses a cookie, but can be configured to be "cookieless" if you really need it; which instead stores your Session ID in the URL itself. 7. If your URL looked like this:http://www.example.com/page.aspxA cookieless URL would look like this:http://www.example.com/(S(lit3py55t21z5v55vlm25s55))/page.aspxWhere lit3py55t21z5v55vlm25s55 is a session ID. 8. In Short, SessionID values are stored in a cookie and there session information is store in memory inside of the worker process (InProc), typically w3wp.exe.

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS