> > that you cannot delete a cookie using this method.
>
> Hmmmm ... does this mean you have a different method, by which you can
> delete a cookie?

A little more experimentation, and I came up with a method to delete
cookies. Say that I have a cookie called "foo," that I set a while ago & I
want it to go away. I simply:

<%
    Cookie killCookie = new Cookie("foo", null);
    killCookie.setPath("/");
    killCookie.setMaxAge(0);
    response.addCookie(killCookie);
%>

Note that this is -not- how the JSDK documentation indicates cookies are to
be deleted, but what the heck -- it seems to work.

Thanks to all who replied, both privately & on the list.

chris

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to