Hello,
I try to use included jsp pattern in my project but I always get errors with taglibs tag :
in file header.jsp, i get a “Tag <html:html not properly ended” error
in file main.jsp, i get a “The end tag “</html:html” is unbalanced” error
header.jsp :
<%@ page language=”java” pageEncoding=”ISO8859-1″%>
<%@ taglib uri=”http://struts.apache.org/tags-bean” prefix=”bean” %>
<%@ taglib uri=”http://struts.apache.org/tags-html” prefix=”html” %>
<%@ taglib uri=”http://struts.apache.org/tags-logic” prefix=”logic” %>
<%@ taglib uri=”http://struts.apache.org/tags-tiles” prefix=”tiles” %>
<html:html>
<body>
main.jsp :
<%@ include file=”header.jsp” %>
Hello
<%@ include file=”footer.jsp” %>
footer.jsp :
</body>
</html:html>
I get theses errors both in MyEclipse JSP Editor and standard jsp editor
is there any solution ?
Thanks