You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Pa...@lotus.com on 2000/06/20 17:43:50 UTC

Re: Attribute value templates do not work.

Rajal Shah wants to do:
<OrderRequestHeader orderID="<xsl:value-of select='orderID'/>">
which is not valid in XSLT. Raising an error is the correct
thing to do.

This should be possible with the following:
<OrderRequestHeader orderID="{orderID}"/>

Paul