Re: forwarding to other JSP pages

1999-06-27 Thread Isa Hashim
Hi Chris, JWS 2.0 will be out in August. Please report bugs to [EMAIL PROTECTED] regards, -isa ]X-Accept-Language: en ]MIME-Version: 1.0 ]Content-Transfer-Encoding: 7bit ]Date: Wed, 23 Jun 1999 22:45:44 -0400 ]From: Christopher Cobb [EMAIL PROTECTED] ]Subject: Re: forwarding to other JSP

Re: forwarding to other JSP pages

1999-06-26 Thread Anonymous
Paul, Hello all! We're using JSP1.0 under JWS2.0beta2. We've been trying to get "page forwarding" working. Specifically, to get one JSP page to simply forward over to another JSP page without doing a round-trip to the client browser. The simplest JSP file I've come up with for this is a

Re: forwarding to other JSP pages

1999-06-26 Thread John Malloy
Try the JSP reference card at: http://java.sun.com/products/jsp/tags/tags.html Therein, the two examples shown are: jsp:forward page="/servlet/login" / % String whereTo = "/templates/"+someValue; % jsp:forward page="%= whereTo %" / --- Paul Reiber [EMAIL PROTECTED] wrote:

Re: forwarding to other JSP pages

1999-06-23 Thread Christopher Cobb
Isa Hashim wrote: Hi Paul, jsp:request forward .../ is not implemented in JWS 2.0 beta2 It will be implemented for the final release version of JWS 2.0. The correct syntax for forwarding (according to the JSP spec) is now: jsp:forward .../ I just tried your simple test case

forwarding to other JSP pages

1999-06-22 Thread Anonymous
Hello all! We're using JSP1.0 under JWS2.0beta2. We've been trying to get "page forwarding" working. Specifically, to get one JSP page to simply forward over to another JSP page without doing a round-trip to the client browser. The simplest JSP file I've come up with for this is a 2-liner