Try

<%@ page isELIgnored="false" %>

not

<% page isELIgnored="false" %>

The tlds are in the jar files no need to have the tld's like traditional taglibs

The below in your jsp should do the job.
<%@ page isELIgnored="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>
<c:set var="test" value="Mellow world!!" />
${test}


HTH Mark

On 5 Jun 2004, at 12:47, Keith Hankin wrote:

I have a very simple JSP page that attempts to output the value of a
variable using EL "${var}" notation. However, it is just printing the
"${var}" literally. I am using Tomcat 5.0.19, and according to the JSP spec,
since this supports 2.4 servlet spec, it should support EL by default.
Anyhow, I tried adding:
<% page isELIgnored="false" %>
to the beginning of the page, but then I get the following error:


According to TLD or attribute directive in tag file, attribute value
does not accept expressions.


However, I do not have any TLD or tag file for this JSP file.



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



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



Reply via email to