I have a question about a Jsp that could be invoked from a HTML page
using post method and from a servlet using RequestDispatcher. In the
first case it receives a parameter and asks for it using
getParameter("Param1") In the second case our intention is send it as a
post method does, with:

RequestDispatcher rd =
getServletContext().getRequestDispatcher("/gesinc/kkparam02.jsp");
rd.forward(request,response);

But using this, seems to be no way of adding a parameter (at least
without using set and getAttribute that will lead us to ask in the jsp
for attributes or parameters depending of the calling source)

Shortly, we are looking for something like request.setParameter (that
not exists)


Thanks in advance

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

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to