Hi,
I’m using tag files in my project, but the JSP editor shows them as unknown. My JSP file resides in /WEB-INF/jsp and has the following contents: –
<%@ taglib prefix=”tm” tagdir=”/WEB-INF/tags”%>
<tm:help/>
and I have a tag file help.tag in /WEB-INF/tags/
I end up with the warning: Uknown tag (tm:help)
Other tags can be used okay with no warnings, e.g. tags from:
<%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core”%>
<%@ taglib prefix=”fmt” uri=”http://java.sun.com/jsp/jstl/fmt”%>
<%@ taglib prefix=”html” uri=”http://struts.apache.org/tags-html”%>
Does myeclipse not support tag files?