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=3779>.
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=3779

the value of <jsp:param> should be URL encoded

           Summary: the value of <jsp:param> should be URL encoded
           Product: Tomcat 4
           Version: 4.0 Final
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: Jasper
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


such as, the page p.jsp cannot get correct parameter test1:

file: f.jsp

<jsp:forward page="/p.jsp">
<jsp:param name="test1" value="value = 1"/>
</jsp:forward>

file: p.jsp
<html>
<body>
<pre>
<%= request.getParameter("test1") %>
</pre>
</body>
</html>

Reply via email to