Hi, Rechard. 2005/7/15, Richard Reyes [EMAIL PROTECTED]:
>
> The value of
>
> <%= pageContext.getAttribute("username") %>
>
> is
>
> [EMAIL PROTECTED]
the value seems like a result of Object#toString().
so, at least you can access methods of Cookie class like
<%=
((javax.servlet.http.Cookie)pageContext.getAttribute("username")).getValue()
%>
but i don't know if that's the way to use cookie, though.
regards
ichy

