Is it safe to use such code?
Response.Cookies[cookieName].Path = Request.ApplicationPath + "/";
I want to know about all corner cases, please...
|
Is it safe to use such code?
I want to know about all corner cases, please...
| ||||
|
feedback
|
|
In short, no, it's not safe. Using cookie paths is fraught with problems as they are case sensitive in IE and Chrome, but not FF. This means any mismatch in path case will stuff things up.
What problem are you trying to solve? | |||||
feedback
|
|
If your application runs in the root of a domain,
As Will correctly points out, you will want to make sure that your application enforces a consistent casing of URLs (i.e. redirect all requests with URLs containing uppercase letters to their lowercase equivalent). Other than that, I believe you should be fine doing this. If you want all of your cookies to be "application scoped", consider creating a custom
| ||||
feedback
|
|
No, it's not safe, for the reasons that Will specified. But... You may want to employ this technique to fulfill your intent. | |||
|
feedback
|