Html Literal Component

Hi i would like to know if there is a component were you can put pure html in its value, when rendered its write exactly its content to be interpreted by a browser.Thank you in advanceBest Regards
[217 byte] By [Whitemerovingiana] at [2007-11-26 20:13:26]
# 1

[nobr]f:verbatim will take the HTML in the component root:<f:verbatim>

This <b>is</b> pure <i>HTML</i><br>Cool!

</f:verbatim>

h:outputText with escape="false" can output unescaped HTML:<h:outputText value="

This <b>is</b> pure <i>HTML</i><br>Cool!

" escape="false" />

// or

<h:outputText value="#{myBean.htmlString}" escape="false" />

[/nobr]

BalusCa at 2007-7-9 23:19:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
thank you for your reply, the outputText worked =)
Whitemerovingiana at 2007-7-9 23:19:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...