Thanks, yes that appeared to be it. I'm always running into this "silly" issue of TagSupport vs. BodyTagSupport and the difference in the constants.

TagSupport --> EVAL_BODY_INCLUDE or SKIP_BODY

BodyTagSupport --> EVAL_BODY_BUFFERED or SKIP_BODY

Seems that the JSP Taglib spec has alot of this use of constant ints in situations where boolean return values would do just fine and save on the confusion. But thats a different issue for a different list... ;-)

-Thank you for reviewing the code.
Mark

Christopher Lenz wrote:
Hi Mark,
see below

    public int doStartTag() throws JspException, JspException {
        return EVAL_BODY_INCLUDE;

    }

If I'm not totally confused, this should be EVAL_BODY_BUFFERED if you want to have the BodyContent set on the tag.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to