Invoking JSP tag with a JSP tag
Hi,
I'm trying to write a tag that basically invokes another JSP tag 5 times with different values for its attribute. I'm just wondering if there's a way to accomplish.
I tried creating instances of the tag that i'm invoking and then calling doStartTag() and doEndTag(), but this doesn't ensure that the body content of that tag will get evaluated. And the body content of that tag happens to be another tag.
Any ideas?
Thanks in advance.
--John

