Tagged Questions

7
votes
2answers
636 views

ASP.NET MVC Cookie Implementation

I try to implement a basic cookie helper in my application. Mainly I check in base controller everytime whether or not if cookie is set. If cookie public class MyCookie { public static string ...
4
votes
1answer
571 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
104 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
1answer
387 views

RedirectToAction causing empty cookie to be set ahead of cookie with values, which results in “lost” cookie

I am using a cookie and if the cookie is set, it forwards the user to signin, else it shows them an error page (unauthorized). The cookie is being set correctly, and if I navigate to any page by ...
2
votes
1answer
3k 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 Cookies and not ...
1
vote
4answers
592 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 ...
0
votes
1answer
46 views

ASP.NET HttpResponse Cookies null check

I have a null check in code that is checking to see whether a cookie exists in the response object already: if (HttpContext.Current.Response.Cookies["CookieName"] != null) { ...
0
votes
1answer
91 views

Set Azure AppFabric Access Control Service cookie expiration time

I'm using Azure's Access Control Service in an ASP.NET MVC 3 application. I can successfully login, read all the claim data I need etc. Everything works fine, except for one thing. After some time ...
0
votes
3answers
119 views

mvc custom httpcookie used to authorize

Currently, I'm using the FOrmsAuthentication.SetAuthCookie to store an Id so I can use it on the next page that is "Authorized" (using custom authorizeattribute controller). But I'm currently thinking ...
0
votes
3answers
2k 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
2answers
591 views

HttpCookie works locally but not on server

I am having issues with my cookie management code. On every page I look to see if a key value has been set. My problem is that looking at the cookie creates an empty cookie. Locally, I can look at ...