Tagged Questions

0
votes
1answer
76 views

C# (Sharp) The Difference between HttpCookie and Cookie?

So I'm confused as msdn and other tutorials tell me to use HttpCookies to add cookies via Response.Cookies.Add(cookie). But that's the problem. Response.Cookies.Add only accepts Co …
1
vote
1answer
29 views

ASP.Net HttpCookie expiration set to two years

I create a cookie and set the Expires property to 24 hours, but in IE the expiration is set to two years. In Firefox it is set correctly. Why? My code: //Set a cookie to expire …
0
votes
1answer
52 views

How to determine .NET cookie path

I am writing a .NET application that uses cookies to store a login token. I'd like the user to be able to log into multiple installations of this application on the same server (l …
2
votes
2answers
142 views

Why does Request.Cookies return string instead of HttpCookie object in foreach loop?

Hi, This morning I accidentally saw the following snippet code, I was fairly surprised because it work very well. Don't look at its logic please, I'm just curious why does the Ht …
0
votes
5answers
261 views

Cookies, HTTP GET, and Query Strings

The United States District Court for the Southern District of New York in re Doubleclick Inc. stated: "GET information is submitted as part of a Web site's address or "URL," in wh …
0
votes
1answer
169 views

Cookie path and its accessibility to subfolder pages

Let say I have a website with domain: www.example.com If I set a cookie with path '/' the cookie will be accessible via all pages in the domain, eg: www.example.com/page1.html w …
1
vote
1answer
1k views

How to make an ASP.NET session cookie expire with the ASP.NET HttpSession?

I have created an HttpCookie in order to share data across a subdomain : HttpCookie cookie = new HttpCookie("sessionGUID"); cookie.Value = value; cookie.Domain = ".example.com"; …