Tagged Questions

5
votes
2answers
1k views

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

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 HttpCookieCollection ...
4
votes
1answer
549 views

Browser occasionally losing HttpCookie for authentication after postback and redirect

This has been a nagging issue for some time, but very sporadic and difficult to isolate. From time to time, browsers that have authenticated on a web application, have been open for a while, have ...
2
votes
1answer
85 views

Asp.net HttpCookie specify port

Is there a way to specify the port for a HttpCookie? I have a site that is available at sub.example.com and needs to be deployed at sub.example.com:81 and sub.example.com:82.(so the same domain, ...
2
votes
3answers
411 views

Is it safe to use Request.ApplicationPath for cookie path

Is it safe to use such code? Response.Cookies[cookieName].Path = Request.ApplicationPath + "/"; I want to know about all corner cases, please...
2
votes
1answer
5k 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"; ...
1
vote
1answer
22 views

ASP.NET MVC NuGet Glimpse Remove - Glimpse References Still Listed in HTTP_COOKIE

I played around with Glimpse in my ASP.NET MVC application, and have since decided to remove it for now. I originally installed it via NuGet and used NuGet to remove it. It appears everything is ...
1
vote
1answer
202 views

FormsAuthentication with enabled slidingExpiration is not returning a cookie in each request.

I have a web application with FormsAuthentication and with slidingExpiration="true" in my web.config is not returning a cookie in each request, but when I see the HTTP transactions, I cannot see the ...
1
vote
1answer
532 views

HttpCookieCollection.Add vs HttpCookieCollection.Set - Does the Request.Cookies collection get copied to the Response.Cookies collection?

I just want to clear this up. I know that if I have set a cookie on a previous request, it will show up in my Request.Cookies collection. I want to update my existing Cookie. Are the cookies ...
1
vote
4answers
553 views

How to create a non-persistent (in memory) http cookie in C#?

I want my cookie to disappear when the user closes their brower-- I've already set some promising looking properties, but my cookies pop back to live even after closing the entire browser. HttpCookie ...
1
vote
2answers
333 views

HttpCookie is not deleted when session changes or is invalid

I'm creating an HttpCookie, setting only the name and value and not the expires property, then adding it to the response. Simple enough. The cookie is created (but not persisted) as expected. The ...
1
vote
3answers
519 views

ASP.NET fails to correctly handle comma delimited cookies

According to the RFC, individual cookies in the "Cookie" HTTP header may be separated by commas as well as by semicolons. However, ASP.NET does not parse the commas case correctly - it does not count ...
1
vote
1answer
493 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 (let's say ...
0
votes
2answers
536 views

ASP.NET MVC. After login i want to redirect to last visited page (stored in a cookie)

In our MVC application we want the user after he is logged in to be redirected to the page he visted last in a previous session. What is a good approach for achieving this? I am thinking of an ...
0
votes
1answer
197 views

What is the best practice for updating a cookie that was set on a previous request in ASP.NET?

Here is the scenario. A cookie with the key "MyCookie" has been set on a previous request. I can access it via HttpContext.Request.Cookies.Get("MyCookie"). I want to perform an update such as ...
0
votes
3answers
1k views

Server cannot modify cookies after HTTP headers have been sent

I am creating a web application in C#. When my page loads I fire an asynchronous thread to process some data. Part of this processing is the updating of a cookie. However when I save the cookie to ...
0
votes
1answer
415 views

Is it possible to set a cookie during a redirect in ASP.NET?

I am using ASP.NET. I either add or set a cookie (depending on whether the HttpRequest contains a cookie with specified key), and immediately afterward call Response.Redirect. The cookie is not set. ...
0
votes
1answer
67 views

Quirky cookie behaviour

A colleague of mine asked me to take a look at some cookie behaviour. He created simple web app that created a cookie and inserted the value of a text field, he then checked the cookie collection on ...
0
votes
1answer
104 views

Why is Cookie available in Request immediately after setting using Response?

In pageload, if you do Response.Cookies.Add(..., immediately in the next line, you can access that cookie via Request.Cookies(... I know that under the covers, the cookie is added to Request.Cookies ...
0
votes
5answers
232 views

ASP.NET Webforms site using HTTPCookie with 100 year timeout times out after 20 minutes

I have a site that is using Forms Auth. The client does not want the site session to expire at all for users. In the login page codebehind, the following code is used: // user passed validation ...
-1
votes
1answer
41 views

Cookie maintain in ASP.NET

I want to record the single cookie for maintain the quantity of a product and all product. how i can do this in c#. are their any way to do this when i can check the existence of product in cookie. ...