I'm having a problem with JSTL 1.1.0-B1 under Tomcat 5.0.16 
My pages were working and then I changed something that
causes the expression to not evaluate but simply be printed out.
Example follows:


<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>JSTL Test</title>
</head>
<body bgcolor="#FFFFFF">

<c:set var="blanktext" >
<a1 />
</c:set>
<pre>
<c:out value="${blanktext}" />
</pre>

</body>
</html>



outputs:

<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>JSTL Test</title>
</head>
<body bgcolor="#FFFFFF">





<pre>
${blanktext}
</pre>



</body>
</html>


How do I get this working again?

TIA

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to