goal:
take in input string that may / maynot have HTML tags
zap the html tags or turn them to pure text ala <
add some HTML tags
output via c:out escapeXml="false"dont want any html to get used as html if it was in the original string. customers enter it in a web browser window.
Brian Buckley wrote:
Set the escapeXml attribute to false.
<c:out value="${foo}" escapeXml="false" />
The JSTL taglibs (c:out) re-write html tags into > so the actual text prints out. Is there any way to disable this?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- ================================================================= = Management is doing things right; leadership is doing the = = right things. - Peter Drucker = =_______________________________________________________________= = http://www.sun.com/service/sunps/jdc/javacenter.pdf = = www.sun.com | www.javasoft.com | http://wwws.sun.com/sunone = =================================================================
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
