httpcookie Questions

1

Solved

I am using ASP.NET MVC and want to be able to automatically log somebody in when they return to the site (in exactly same way that this site does). When a user first registers or logs in I set the...
Abbott asked 17/2, 2013 at 14:19

2

Solved

I am using following syntax to set cookie: Set-Cookie:Cookie-name=value; path=/; Max-Age=1296000; HttpOnly In google chrome console it is showing Invalid Date for that cookie. What is wrong i...
Glasshouse asked 13/2, 2012 at 5:43

1

I am facing the problem with posting username and password with different domains - one submits the form successfully while the other doesn't(the form data is empty)! The html code on both domains ...
Verulamium asked 20/11, 2012 at 18:27

1

Solved

Yet another problem with forms authentication ticket expiring too soon. I need to use sliding Expiration set to true. I have read forums and understood the problem with the loss of precision, that ...
Amen asked 8/6, 2012 at 8:50

1

Solved

I cant understand how to use cookies in ZF2? Can some one advise some links with set and get cookie?
Kizer asked 3/10, 2012 at 11:27

1

Solved

I have a slight confusion regarding HTTPOnly attribute in cookies. I am aware that its main use is for protection against XSS attacks. Let us assume there is web application which has set httponly ...
Spessartite asked 22/5, 2012 at 8:24

2

Solved

Semicolon ;, the Cookie: string or some other string?
Elative asked 30/1, 2011 at 15:2

1

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 addin...

3

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...
Cutin asked 9/4, 2011 at 23:57

1

Solved

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 f...

1

Solved

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...
Eaglestone asked 20/3, 2011 at 3:46

1

Solved

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 FormsAuthentic...
Rotogravure asked 30/11, 2009 at 11:53

3

Solved

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 cou...
Repairman asked 6/3, 2010 at 23:53

1

Solved

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 Htt...
Crystie asked 22/11, 2009 at 17:51

1

Solved

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"; Response.Cookies....
Koopman asked 7/12, 2008 at 4:28

© 2022 - 2024 — McMap. All rights reserved.