Hi,
I am receiving the following error message:
According to TLD or attribute directive in tag file, attribute value does not accept any expressions
on this code:
<a href="<c:out value="current_uri"/>&view
_sfdid=<c:
out value="${required_actions.
sfdid}"/>"
>View</a>&
nbsp;
I know this code works, because it is just fine on my REsin server.
I've looked up stuff online about this, including changing
<%@ taglib uri="
http://java.sun.com/jstl/core" prefix="c" %>
to
<%@ taglib uri="
http://java.sun.com/jsp/jstl/core" prefix="c" %>
or
<%@ taglib uri="
http://java.sun.com/jstl/core_rt" prefix="c" %>
but this does not solve the problem. My web.xml file contains the following:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"
xmlns="
http://java.sun.com/xml/ns/javaee"
xmlns:web="
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
I am using Tomcat 6.
Does anyone know how I can fix this problem?
Thanks,
Courtenay
Start Free Trial