Re: How to display a bean property with html markup?

2004-03-26 Thread Bill Siggelkow
And if you wanted to use JSTL you would use: c:out value=${info.infoName} escapeXml=false/ Bill Siggelkow Anybody knows how to display a bean property with html markup properly in the output. I have the JSP snippet code as follows: HTML abcdefg bean:write name=info property=infoName /

How to display a bean property with html markup?

2004-03-25 Thread S W
Hi, Anybody knows how to display a bean property with html markup properly in the output. I have the JSP snippet code as follows: HTML abcdefg bean:write name=info property=infoName / /HTML The infoName is a string I got directly from database as follows: String infoName = br pfont

RE: How to display a bean property with html markup?

2004-03-25 Thread Slattery, Tim - BLS
Anybody knows how to display a bean property with html markup properly in the output. I have the JSP snippet code as follows: HTML abcdefg bean:write name=info property=infoName / bean:write name=info property=infoName filter=false/ filter=false tells the tag not to replace things like

RE: How to display a bean property with html markup?

2004-03-25 Thread S W
Hi Tim, Yes, it solved the problem. Thanks a lot, Shirley Slattery, Tim - BLS [EMAIL PROTECTED] wrote: Anybody knows how to display a bean property with html markup properly in the output. I have the JSP snippet code as follows: abcdefg filter=false tells the tag not to