Put HTML in JSF Panel Control

Hi to everyone,how i can put an html code (like: <b>Hello</b>) in Panel Control or in another jsf control?Thanks,Fabio
[165 byte] By [fabdiba] at [2007-11-27 6:02:20]
# 1

There are several ways:

Just put it inline:<b>Hello</b>

Put it in a h:outputText with a style:<h:outputText value="Hello" style="font-weight: bold;" />

Put it raw in h:outputText with HTML escape set to false:<h:outputText value="<b>Hello</b>" escape="false" />

BalusCa at 2007-7-12 16:43:36 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thanks for aswer, BalusC.Bye, Fabio.
fabdiba at 2007-7-12 16:43:37 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...