Marc Vila P�rez wrote:

> Hi!
>   Can anybody help me? I want to do a forward from a jsp page to another
>   jsp page. This is the code:
>
>   ...
>   <jsp:forward page="end_user.jsp">
>   <jsp:param name="Price" value="2">
>   </jsp:forward>
>   ...
>

You have not terminated the <jsp:param> tag correctly.  Try this:

  <jsp:forward page="end_user.jsp">
  <jsp:param name="Price" value="2"/>
  </jsp:forward>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to