请教一个html标签的问题
我写了个测试标签页testHtml.jsp,代码如下:
<%@page contentType="text/html;charset=gb2312"%>
<%@taglib uri="/struts-logic" prefix="logic"%>
<%@taglib uri="/struts-html" prefix="html"%>
<html:html locale="true">
<html:base/>
<hr>html:html测试
<html:link page="/testHtml.jsp">aaaaaa</html:link>
</html:html>
并且在项目中导入struts-html.tld,
在web-inf\web.xml里添加了
<taglib>
<taglib-uri>struts-html</taglib-uri>
<taglib-location>/WEB-INF/tld/struts-html.tld</taglib-location>
</taglib>
可是运行的出错信息是File "/struts-logic" not found,
这是怎么一回事呢?