Hi,

First jsp -

<form name="form1" action="forward1.jsp">
        <input type="text" name="name">
        <input type="submit" value="Submit">
</form>

Second jsp -

<%
        String name = request.getParameter("name");
%>
<jsp:forward page="forward2.jsp">
        <jsp:param name="name1" value="<%=name%>" />
</jsp:forward>

Third jsp -

<%
        out.println("name = " + request.getParameter("name"));
        out.println("<br>name1 = " + request.getParameter("name1"));
%>

It works very fine in IPlanet. I hope you are also doing the same thing. If yes then 
it may be a problem with WL.

==========================================================================To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to