On Mon, 30 Sep 2002, Steve Vanspall wrote:

> I want to use JSTL to do the same thing, but when I use <c:out
> value="${AdminProdAttrForm.genAttribs.html}">
> 
> I get the html code with the appropriate escape character encoding
> instead.
> 
> i.e. &lt; instead of < etc.
> 
> is there a way to stop the tag from escaping these characters??
> 
> any help would be appreciated.

Sure - set the 'escapeXml' attribute of <c:out> to 'false:

  <c:out
    value="${AdminProdAttrForm.genAttribs.html}"
    escapeXml="false" />

-- 
Shawn Bayern
"JSTL in Action"   http://www.jstlbook.com


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

Reply via email to