<%-- WEB-INF/tags/simple.tag --%>
<%@ attribute name="city" %>
<%@ tag pageEncoding="utf-8"%>
This is ${city}.
<%-- output.jsp --%>
<%@ taglib prefix="ayo" tagdir="/WEB-INF/tags" %>
<% request.setAttribute("city", "Sparta");%>
<html>
<body>
<ayo:simple city="${city}"/>
</body>
</html>
If rtexprvalue value for tagfile is false by default.
Then why output.jsp code works fine.
Tea Addict, Oracle Java Programmer , Oracle SQL Expert , Oracle Java Web Component Developer, Oracle Web Service Developer