Legolas Woodland wrote:
Hi
Thank you for reading my post.
How i can write a cookie from a Struts jsp file into client system ?
I mean when user pressed sub,it button i write the cookie
in a way that i can use it within
logic:present
and logic:notPresents
tags .
There are probably dozens of answers to this... One simple, brute-force
approach would be to use a scriptlet:
<%
response.addCookie(new Cookie("xxx","yyy"));
%>
I'm sure there are any number of JSP custom tags out there that let you
achieve the same result. Google is your friend :-)
L.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]