You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by ould sid'ahmed <no...@emn.fr> on 2006/06/08 09:53:59 UTC

Text html in jsf

Hello,
I would like know, how I can print a text html in jsf :

I have this text : "Good luck <a href="nould@yahoo.fr">", I would print 
the text in my page jsf.

Think's

Re: Text html in jsf

Posted by Ernst Fastl <er...@gmail.com>.
Assuming you have the namespace:

xmlns:f="http://java.sun.com/jsf/core"

in your header you should be able to use

<f:verbatim> Good luck <a href="nould@yahoo.fr"></f:verbatim>

or maybe you'd rather like

<a href="mailto:nould@yahoo.fr">Good luck </a>

but those kind of questions should generally go to the MyFaces-user mailinglist

regards

Ernst

On 6/8/06, ould sid'ahmed <no...@emn.fr> wrote:
> Hello,
> I would like know, how I can print a text html in jsf :
>
> I have this text : "Good luck <a href="nould@yahoo.fr">", I would print
> the text in my page jsf.
>
> Think's
>