how to forward to a newpage in Java

2001-01-09 Thread Georges Boutros
hello, i just wanna know how to forward to a New Page in java and not jsp. thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: how to forward to a newpage in Java

2001-01-09 Thread Carlos
sendredirect - Original Message - From: "Georges Boutros" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 5:48 PM Subject: how to forward to a newpage in Java hello, i just wanna know how to forward to a New Page in java and not jsp. thanks

RE: how to forward to a newpage in Java

2001-01-09 Thread Cato, Christopher
This would do the trick: HttpServletResponse res = new HttpServletResponse(); // this you've probably allready got somewhere in the code res.sendRedirect("relative or full url to redirect to"); Regards, Christopher -Original Message- From: Georges Boutros [mailto:[EMAIL PROTECTED]]

Re: how to forward to a newpage in Java

2001-01-09 Thread Robert Wohleb
Do either of these two solutions forward any form input data like jsp:forward does? ~Rob "Cato, Christopher" wrote: This would do the trick: HttpServletResponse res = new HttpServletResponse(); // this you've probably allready got somewhere in the code res.sendRedirect("relative or full