On a (very) quick read of the spec, it looks like you'll need to rely on c:out from JSTL.

-Tim

Dave Ford wrote:
Is there way to specify if EL expression in the body of a jsp page should be
escaped? Consider the following:

<%
request.setAttribute("message","It is a <i>great</i> day");
request.setAttribute("equation","10 > 4");
%>

${message} <!-- xml escaping should be off -->
<br/>
${equation} <!-- xml escaping should be on -->



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



Reply via email to