1. Why simple tags can have Classic parents? coderanch.com |
2. getParent from Classic tag enclosed by SimpleTag coderanch.com |
3. simple tags Vs Classic tags coderanch.com |
4. Classic Tags coderanch.com |
6. Can a 'Classic' tag have JSP body contents? coderanch.com |
7. Classic Tag Handler problem coderanch.comHi, I made a custom tag handler. In the doStartTag() method I gave SKIP_BODY and in the doEndTag() I gave SKIP_PAGE -- so the body of my tag should not be evaluated and the contents of the jsp page after the tag should not be displayed. But this is not happening. The Custom tag handler :-- package classictags ; import javax.servlet.jsp.* ... |