I try to use Custom Tags in an application web and I add
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
But it doesn't recognize any tag, for example:
The absolute uri:
JavaServer Pages Standard Tag Library can't resolve it or in web.xml or in the jar files
How can I resolve this?
the tags
<%@taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
are recognized and works fine
Eric