Subject: RE: how to get value out of the attlist ?
From: Mike Brown <mbrown@xxxxxxxxxxxxx>
Date: Wed, 1 Dec 1999 13:51:33 -0700
|
> Jingwen (Gene?) Wang wrote:
> I still don't have any luck yet, even after I tried:
> Date: <b><xsl:value-of select="DATE[@FIND_VALUE]"/></b> <br/>
DATE[@FIND_VALUE] means:
element named DATE for which @FIND_VALUE is true
(true if it has an attribute named FIND_VALUE)
Try this:
<xsl:value-of select="DATE/@FIND_VALUE"/>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|