Hi,
I have this simple hello world code for jstl
Code:
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
...
<c:set var="hello" value="Hello World!"/>
<c:out value="${hello}"/>
it is suppose to print out "Hello World!", but instead it prints "${hello}". I have included jstl.jar and standard.jar into the class path. Has anyone run into this before? Thanks.