Classic « Tag « JSP-Servlet Q&A





3. simple tags Vs Classic tags    coderanch.com

4. Classic Tags    coderanch.com

7. Classic Tag Handler problem    coderanch.com

Hi, 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.* ...