Re: Simple question about cookies
- From: Joe <Joe@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu, 4 Aug 2005 17:09:03 -0700
Yes I am confused. When the clicks on log out link, I set the expiry to past
date. But when I click on one of secured pages (pages that check "tick"
cookie before displaying the page) they allow me to see the page whcih
shouldn't happen because cookie is expired. In short my logout is not
working out.
Joe
"Tom.PesterDELETETHISSS@xxxxxxxxxx" wrote:
>
> I tested your code and it does what is exepcted. Once the server sends a
> cookie with the expire date in the past it wont send the cookie to the server
> the next time.
>
> Don't forget that when the browser requests the logout page it will still
> send the cookie. The logout page sends the command to forget the cookie and
> _only then_ the browser wont send it next time.
>
> Is that what's confusing you?
>
> Let me know if you have any more questions..
>
> Cheers,
> Tom Pester
>
> > Hi,
> >
> > I'm creating a cookie named "tick" that should expire after 1 day when
> > user logs in.
> >
> > TheDomain = ".www.test.com"
> > ThePath = "/dir1/subdir"
> > Response.Cookies("tick")("ID") = Session("userEmail")
> > Response.Cookies("tick").Expires = DateAdd("d", 1, Now())
> > Response.Cookies("tick").Domain = TheDomain
> > Response.Cookies("tick").Path = ThePath
> > I want to have a logout link. When clicked, I am trying to set the
> > expiry date of cookie to say 5 days back like this to tell browser
> > that this cookie has expired and it should remove it.
> >
> > Response.Cookies("tick").Expires = DateAdd("d", -5, Now())
> >
> > But I noticed that I am not able to change the cookie's expiry date by
> > above line. Can someone tell me what mistake I'm making?
> >
> > Thanks,
> >
> > Joe
> >
>
>
>
.
- References:
- Simple question about cookies
- From: Joe
- Re: Simple question about cookies
- From: Tom . PesterDELETETHISSS
- Simple question about cookies
- Prev by Date: RE: Datalist ItemDataBound modification
- Next by Date: Question about login script
- Previous by thread: Re: Simple question about cookies
- Next by thread: Datalist ItemDataBound modification
- Index(es):
Relevant Pages
|