What lines starting with <%@ should be added at the beginning of a JSP file to be able to make use of the tag.
I have added the following line to the beginning of my jsp.
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
But Eclipse IDE says
The tag handler class for "html:link" (org.apache.struts.taglib.html.LinkTag) was not found on the Java Build Path
next to the < html:link > tag.
What is wrong here?
What I am trying to do is - load page1.jsp from homepage.jsp through struts actionmapping.