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 -->

Thanks


Dave Ford
Smart Soft - The Developer Training Company
http://www.smart-soft.com


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

Reply via email to