This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: variable


<xsl:variable> is not supported by the IE5 implementation of XSL.

what you will have to do is something like:

<xsl:template match="rs:data">
     <TABLE>
          <th><INPUT TYPE="BUTTON">
			<xsl:attribute name="sortfld">
				<xsl:value-of select="@TradeDate"/>
			</xsl:attribute>
			<xsl:attribute name="value">
				<xsl:value-of select="."/>
			</xsl:attribute>
		  </INPUT>
	</th>
    </TABLE>
</xsl:template>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]