(Choose 1 answer)
Given the following JSP and tag handler code, what is the result of accessing the JSP?
JSP Page Source
<html>
<body>
START
<br>
<%@taglib uri="test_taglib" prefix="myTag"%>
<my Tag:TestTag/>
<br>
END
</body>
</html>
Tag Handler Code for <my Tag: TestTag />
package examples;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class TestTag extends TagSupport }
public int doStartTag() throws JspException {
return EVAL_PAGE;}
public int doEndTag() throws JspException{
return SKIP PAGE:
}
Exit 16