Tagged Questions
A class in the System.Web namespace of the .NET framework which provides a type-safe way to create and manipulate individual HTTP cookies.
7
votes
2answers
460 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 ...
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 ...
3
votes
1answer
989 views
Create non-persistent cookie with FormsAuthenticationTicket
I'm having trouble creating a non-persistent cookie using the FormsAuthenticationTicket. I want to store userdata in the ticket, so i can't use FormsAuthentication.SetAuthCookie() or ...
2
votes
1answer
84 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
2answers
276 views
Convert Google Analytics cookies to Local/Session Storage
UPDATE
http://jsfiddle.net/musicisair/rsKtp/embedded/result/
Google Analytics sets 4 cookies that will be sent with all requests to that domain (and ofset its subdomains). From what I can tell no ...
2
votes
1answer
368 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
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
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 ...
2
votes
1answer
808 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
...
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
828 views
Android (solved): HttpPost with Header, Cookies, Parameters - Problem 417 - Expectation Failed
Ok this will be a long one, so thx for all who are reading this to the end.
Precondition: I can't access the server, I'm just trying to post data as a news comment.
I'm desperately testing this out ...
1
vote
3answers
132 views
Generate and save a custom cookie on the serverside
I would like to generate a cookie (on the server side so there won't be any browser) with specific name/values and save it in a text file (e.g with fopen ). Later I'm planning to to use that cookie ...
1
vote
2answers
134 views
How do you update a cookie in PHP?
If I call setcookie() two times with the same cookie name, I get two cookies created...
How do you update a existing cookie?
1
vote
1answer
531 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
0answers
363 views
Setting cookies in ASP.net for localhost when 127.0.0.1 is aliased in the Windows HOSTS file
During development, I'm simulating running my site on different subdomains by adding records to my HOSTS file to alias 127.0.0.1 like so:
127.0.0.1 sub1.mylocalsite.local
127.0.0.1 ...
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
2answers
199 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 in 24 hours.
...
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
1answer
25 views
Cookie size restriction in IE
I need to save a form state (values for input elements).
But the form is not a standard html form so the browser would not save the form state.
I need to store the form state as cookie I cannot save ...
0
votes
1answer
53 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
44 views
What is the difference between key and value in html cookies?
What is the difference between key and value in html cookies?
i saw that a cookie looks like this in html request:
not like this:
Cookie: name1=key1; name2=key2;
but rather like this:
...
0
votes
1answer
32 views
Preventing multiple votes with cookies
A common method for preventing non-members from multiple voting is to set a cookie (regardless of possibility of deleting cookies). In numerous discussions about this issue, one point is ignored. For ...
0
votes
2answers
97 views
How to pass cookies fromn Android application to the webpages
I have an Android application which has a login screen. Upon the click of login button I am launching a webview with cookies passed to it. So, I am able to see the contents of the webpage in the ...
0
votes
0answers
226 views
VB.NET CookieContainer - How To Re-Use On New Session?
I am using the code below to login to my site via a small application that I have made.
My issue is that I want to be able to re-use the cookies that are created in this session the next time that I ...
0
votes
1answer
51 views
How extra cookie comes
I wrote a program that shows all the headerfield and values of a webpage. I try to match all cookies found from setcookie headerfield with firefox page info.(I add an extension of view cookie) . ...
0
votes
2answers
88 views
How to get Cookies?
Using the WWW::Mechanize and HTTP::Cookies how would I extract the cookie past in the response from the server?
#usr/bin/perl
#MagicLogin.pl
use warnings;
use strict;
use Win32::IE::Mechanize;
...
0
votes
1answer
101 views
how to generate a cookie in text file
I'm wondering if it's possible to generate a cookie and save it in a text file. The requirement is to generate a cookie for any domain not only that you own. After all the cookies are plain text but ...
0
votes
3answers
107 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
0answers
27 views
un-editable cookie
We are trying to implement session sharing across web application with in same Jboss.
We are using JSessionId cookie as the key to store session ids in the application contenxt, so that second web ...
0
votes
2answers
535 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
3answers
197 views
Purpose Of PHP Sessions and Cookies and Their Differences
I am just starting to learn to program in PHP and have ran into a slightly confusing area, Sessions and Cookies.
I understand the server-side and client-side storage differences but i cant see how ...
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
3answers
161 views
PHP or Javascript to read clickbank hoplink cookie?
I need to write a PHP or javascript that can read the clickbank cookie that's set when a user has clicked on one of my affiliate's hoplinks prior to reaching any of my sales pages.
How can one do ...
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
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
112 views
Java, How to Instance HttpCookie from a String, any convenient ways?
I have got a cookie string from HTTP response header like the following line:
name=value; path=/; domain=.g.cn; expire=...
I can parse the above line to key-value pairs, and, also it's easy to set ...
0
votes
1answer
149 views
putting ='s, ampersands and colons in a cookie [closed]
Possible Duplicate:
Allowed characters in cookies
I need to separate values in a cookie. So I chose &'s to separate name=value pairs just like I would in a URL. There can be multiple ...
0
votes
2answers
561 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 ...
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
208 views
C# Cookie is not saving its information
Scenerio - I am writting a web app that based off of which login box you use (database1 and database2) it will connect you to the cooresponding database. I have set the web.config to hold both ...
0
votes
1answer
103 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
3answers
139 views
how to add serial key to client system when he visit our website
i want to add 3 serial key to client system using httpcookie when he visited my website
my website off course in asp.net MVC
but
serial key is different different not same.
when i add a 4th cookie ...
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
...
0
votes
1answer
59 views
httpCookie cause the page not to load
I'm using VS 2010, vb.net and asp 3.5. I have a simple default.aspx page that has
Dim ctx As HttpContext = HttpContext.Current
Dim cookie As HttpCookie = ctx.Request.Cookies("SessionGUID")
...