# Consider these files.
<%-- WEB-INF/tags/header.tag --%>
<h1>Hello ${name}!!</h1>
<%-- output.jsp --%>
<%@ taglib prefix="my" tagdir="/WEB-INF/tags" %>
<html>
<body>
<my:header name="Manoli"/>
</body>
</html>
Is the declaration and use of the
JSP tag file valid? (1 correct answer)
1. Yes.
2. No.
Answer : No
I thought it should be Yes.
Can some one help?
Thanks
Kay