Craig McClanahan wrote:

> "Bernard, Frank" wrote:
>
> > > Is it possible to write JSP code to redirect the browser to open a new
> > > page,
> > > say, page B from JSP code in page A?
> > >
> >         use:    response.sendRedirect ( target_URL );
> >
>
> You can also do this on the server side (without a second round trip back
> to the
> client) with
>
>     <jsp:forward page="/targetpage.jsp" />
>
        <%  response.sendRedirect ( target_URL ); %>  is server side, isn't
it.

        Frank Bernard
        Healy Hudson AG
        CDT - Core Development Team
        67691 Hochspeyer, Nelkenstr. 43
        Tel.: 06305 / 92 11-804, Fax: 06305 / 92 11-60

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to