jstl & jsp

Hi!

I have an jsp page(for example):

<%@ page language="java" contentType="text/html; charset=UTF8"

pageEncoding="UTF8"%>

<%@taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF8">

</head>

<body>

<c:set var="i" value="12"></c:set>

<c:out value="${i}"></c:out>

</body>

</html>

when I`m starting that page on tamcat 5.5, I see "${i}" instead of 12?

Please help...

[868 byte] By [5562822486247483396a] at [2007-11-27 6:41:31]
# 1
Looks like you are using JSTL1.0Go and read [url http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0] this post [/url] reply #6. It explains the common issues with installing and using JSTL on Tomcat.
evnafetsa at 2007-7-12 18:11:07 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
try <%@ page isELIgnored="false"> at the top of ur page
bg06a at 2007-7-12 18:11:07 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...