Tuesday, February 15, 2011

How to disble "Expression Language" in JSP

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html" isELIgnored="false" %>

<table>
    <tr>
        <td>
            <c:out value="${message}"/>
        </td>
    </tr>
</table>
       

No comments:

Post a Comment