缺core对应的tld文件,或者没有在web.xml文件中声明该taglib
比如:
          <taglib>
<taglib-uri>tlduri</taglib-uri>
<taglib-location>/WEB-INF/jstl-core.tld</taglib-location>
</taglib>

解决方案 »

  1.   

    不对啊,我没用到自定义的标记库啊,
    "http://java.sun.com/jsp/jstl/core"不是标准标记库吗?
      

  2.   

    <%@ page contentType="text/html" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
      <head>
        <title>JSP is Easy</title>
      </head>
      <body bgcolor="white">    <h1>JSP is as easy as ...</h1>    <%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
        1 + 2 + 3 = <c:out value="${1 + 2 + 3}" />  </body>
    </html>
      

  3.   

    lib目录下要有jstl.jar和standard.jar tld目录下要有c-1_0.tld、c-1_0-rt.tld、c.tld
      

  4.   

    我解决这个问题了,我已经能过EMAIL联系你了。