Quantcast
Channel: How do Cookies Work in ASP.NET? - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by NickSuperb for How do Cookies Work in ASP.NET?

http://msdn.microsoft.com/en-us/library/ms178194(v=vs.100).aspxif (Request.Cookies["thisuserlogin"] != null){ HttpCookie byeCookie = new HttpCookie("thisuserlogin"); byeCookie.Expires =...

View Article



Answer by Joshua for How do Cookies Work in ASP.NET?

You should use a tool like Fiddler on the client side to capture all of the data going back and forth. This will help you see that your cookie should be set with a date in the past (and missing from...

View Article

How do Cookies Work in ASP.NET?

The website where I work is made up of several projects (written in several languages). Right now we have to use some awkward code in query strings and session variables to keep a person logged in when...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images