DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11021>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11021

ActionForward or <html:link> tag does not support absolute URIs





------- Additional Comments From [EMAIL PROTECTED]  2002-10-28 01:16 -------
The behavior you describe is handled by the JSTL <c:redirect> tag.  This tag also 
handles query 
string parameters more elegantly than the struts version.  If you're on a servlet 2.3 
level 
container use that, if not you can do this in an Action by saying 


response.sendRedirect(URLEncoder.encode("myurl","utf-8"));

I recommend doing 
this in the Action regardless of JSTL availability because, in general, JSPs should 
not be 
performing business logic.

--
To unsubscribe, e-mail:   <mailto:struts-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Reply via email to