Michael Gagnon wrote:
I've added a custom taglib in my project
I would like to use struts URL tags in this. Ideally my tag handler would generate s:url and s:a tags that could then be processed by struts. I don't see a way to do this though
A tag is a Java object. You can always instantiate org.apache.struts2.views.jsp.URLTag in your custom tag, set the appropriate attributes (don't forget to setJspContext()), and call doTag() on it.
-Dale --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]