Tagged Questions
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
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 ...
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
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 ...