Hi,
I am trying to write a custom tag <mytag:twolist ...> which in turn outputs two <html:select ...> tags, effectively I intend to write a custom tag which should result in evaluatable
JSP.
As per JSP logic body content of custom tag may contain further tags. I attempted to alter body of the tag using BodyTagSupport but to my vain altered body content of my tag was not treated as JSP the output html contained html:select
1. My jsp had declared the tag for html
2. The body content of the tag in the TLD was JSP
Can anybody point me out a solution for this issue!