JSTL问题解决之-->报找不到C标签

当jsp页面显示报找不到C:标签时的解决办法
 
  在lib下导入jstl.jar 和standard.jar
  并在WEB-INF 下放置  c.tld
然后在项目的web.xml中配置

  

 <jsp-config>
  	<taglib>
		<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
		<taglib-location>/WEB-INF/c.tld</taglib-location>
	</taglib>
  </jsp-config>


你可能感兴趣的:(C++,c,jsp,Web,C#)