How to assign >> to attribute value of <h:commandButton>

I am trying to use ">>" as a label of <h:commandButton>

like this:

<h:commandButton id="cmdNext" value=">>"></h:commandButton>

Seems like JSF page validator doesnot like the way i assign >> to its value attribute.

How can I assign >> to value of <h:commandButton>

[306 byte] By [learningjava5a] at [2007-11-27 11:26:13]
# 1

Use HTML entities.

&gt;&gt;

See for an overview: http://www.w3schools.com/tags/ref_entities.asp

BalusCa at 2007-7-29 16:09:08 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...