Expression Language not supported in compile time attribute value
Hi guys
Iam getting this error while running JSP page in JDevloper 10g
Expression Language not supported in compile time attribute value at the statement
<c:out value="${date}"/>
Please help me out
<!DOCTYPE HTML PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=windows-1252"%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
<jsp:useBean id="date" class="java.util.Date"
scope="page"/>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
<title>untitled1</title>
</head>
<body>
<c:out value="Hello"/>
<c:out value="${date}"/>
</body>
</html>
Thanks in advance

