S
Steven
Hi All,
This simple code doesn't work :
--
<c:set var="test" value="test"/>
<c
ut value="${test}"/>
--
Gives this error :
description The server encountered an internal error () that prevented it
from fulfilling this request.
javax.servlet.ServletException: javax/servlet/jsp/el/VariableResolver
While for example this code does work :
---
<jsp:useBean id="now" class="java.util.Date" />
<c
ut value="${now}"/>
---
The tag I use to import JSTL into the page is :
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
I'm not sure what version of JSTL I'm using, how can I check?
in my /WEB-INF/lib/ directory I have the two files :
- standard.jar (529kb)
- jstl.jar (25kb)
Any suggestions what could be wrong?
Thanks for any help!!
This simple code doesn't work :
--
<c:set var="test" value="test"/>
<c
--
Gives this error :
description The server encountered an internal error () that prevented it
from fulfilling this request.
javax.servlet.ServletException: javax/servlet/jsp/el/VariableResolver
While for example this code does work :
---
<jsp:useBean id="now" class="java.util.Date" />
<c
---
The tag I use to import JSTL into the page is :
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
I'm not sure what version of JSTL I'm using, how can I check?
in my /WEB-INF/lib/ directory I have the two files :
- standard.jar (529kb)
- jstl.jar (25kb)
Any suggestions what could be wrong?
Thanks for any help!!