Tagged Questions
7
votes
2answers
484 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
551 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
86 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
371 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
559 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
57 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
108 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
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
0answers
86 views
how to use google API for access their service in application
How i can use google API for reading their feeds. the process is simple that i give a request to server they give me SID when username and password is valid.
i use SID by adding them in cookie and ...
0
votes
2answers
566 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 ...