Click here to Skip to main content
15,913,773 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello all
how the internet explorer read the cookies from the server
Posted

It doesn't.

Cookies are not stored on the server, they are stored on the client. That is the whole point!

ASP.NET Cookies Overview[^]
 
Share this answer
 
Cookies are maintaining on client's browser not in the server.
If you need to use server side state ,you have to use Session State.

Quote:
A cookie is a small bit of text that accompanies requests and pages as they go between the Web server and browser. The cookie contains information the Web application can read whenever the user visits the site.
For example, if a user requests a page from your site and your application sends not just a page, but also a cookie containing the date and time, when the user's browser gets the page, the browser also gets the cookie, which it stores in a folder on the user's hard disk.


For more info :

http://msdn.microsoft.com/en-us/library/ms178194(v=vs.90).aspx[^]

More about Session State:

http://msdn.microsoft.com/en-us/library/ms972429.aspx[^]

I hope this will help to you.
 
Share this answer
 
v2

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