reset password
Author Message
yogesh
Posts: 24
Posted 13:03 Apr 22, 2010 |

i have already added libraries in lib as am using the tag formatdate.have added tag library on jsp page as well. but it still gives error something like this:

 

org.apache.jasper.JasperException: /WEB-INF/revisionwiki.jsp(22,0) No tag "formatdate" defined in tag library imported with prefix "fmt"
 

mithawala
Posts: 8
Posted 13:08 Apr 22, 2010 |

Add these libraries  with prefix fmt and c.

fmt used for the date and time format.

   <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

Last edited by mithawala at 13:09 Apr 22, 2010.
yogesh
Posts: 24
Posted 13:10 Apr 22, 2010 |
mithawala wrote:

Add these libraries  with prefix fmt and c.

fmt used for the date and time format.

   <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

 thts how i have done it..but still am getting error

yogesh
Posts: 24
Posted 13:34 Apr 22, 2010 |

i got it