Try this. You will need to be using a Container that compiles with the
servlet 2.2 spec and use the J2EE jar.

Paul
ServletContext sc = getServletContext();
String url="YourJspUrl";
RequestDispatcher rd = sc.getRequestDispatcher(url);
rd.forward(request, response);

Venkateshwar Reddy Bommineni wrote:

> How can a current request object is made available in another jsp file
> which is a normal hyperlink in the current jsp file..without adding
> parameter values to that hyperlink..

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