Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
where storing session ID when i disable cookie option (Cookieless SessionIDs)
What mechanism is used to store data?
Posted
Updated 21-Apr-11 6:23am
v2

By default, the session Ids are stored in cookies. But in cookieless scenario, Server encodes the session id and add it with every href link in page. When user click any link, ASP.NET decodes that session id and passes it to the page that user requesting. Now the requesting page can retrieve any session variable
 
Share this answer
 
Depends on the session state you have chosen. By default in memory. The Session ID is stored in the url itself.
For more information http://msdn.microsoft.com/en-us/library/aa479314.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900