Disable escape in a commandButton

How can I prevent jsf to escape the value of a commandButton?

<h:commandButton style="float: right;" action="#{CompanySearchBean.closeDetails}">

<h:outputText value="test" escape="false"></h:outputText>

</h:commandButton>

This is not working.

[397 byte] By [CH.Sanixa] at [2007-11-27 1:38:44]
# 1
What exactly do you want to escape? Usually only HTML entities will be escaped if the escape attribute is set to true.
BalusCa at 2007-7-12 0:50:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I wanted to escape the value of the button, but it works now anyways. Thanks for your help :)
CH.Sanixa at 2007-7-12 0:50:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...