C
Chris
I'm just starting to use the Java Standard template library,
and I'm having a problem with my expessions being output
correctly by the c
ut tag.
I've followed all of the instructions for installing JSTL,
and I am using it under Tomcat 5.0.
Here is the relevant snippet from my JSP:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %
<c:set var="browser" value="${header['User-Agent']}"/>
<c
ut value="${browser}"/>
When the page is rendered, I get the output
"${browser}" instead of the evaluated expression. What am I
doing wrong?
Thanks in advance
and I'm having a problem with my expessions being output
correctly by the c
I've followed all of the instructions for installing JSTL,
and I am using it under Tomcat 5.0.
Here is the relevant snippet from my JSP:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %
<c:set var="browser" value="${header['User-Agent']}"/>
<c
When the page is rendered, I get the output
"${browser}" instead of the evaluated expression. What am I
doing wrong?
Thanks in advance