Hi Everyone,
Ok it seems that a lot of people are having this problem, and it's driving me nuts.
--
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<HTML>
<HEAD><TITLE>JSP Test</TITLE></HEAD>
<BODY BGCOLOR="#FDF5E6">
<c:out value="${1 + 2 + 3}"/>
</BODY></HTML>
--
This is giving the following error :
This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application
Changing the first line into :
--
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
--
I don't get that error any more, but now it says :
No such tag out in the tag library imported with prefix c
What the ^%*& is wrong here?
O yes, I'm using Tomcat 4.1 (can't upgrade)
Thanks for any help!!