> Custom tags in JSP 1.1 will let you deal with this in a better way.
> A tag handler can return a code telling the JSP container to not
> process the rest of the page (actually, generate a return after the tag
> handler call).
>

What is the syntax for this?

> In JSP 1.0, you have to deal with this using scriptlets, e.g.:
>
>  <jsp:useBean id="x" ... />
>
>  <%
>    x.doSomethingThatMayForward();
>    if (x.isForwarded) {
>       return;
>    }
>  %>
>

That is where my problem roots from. A "return" statement in a bean doesn't
return from the service() method,it just
returns back to the calling Servlet/JSP.

Where can I find some examples on taglib? I've checked the latest specs, but
would like some more examples....

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