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]

XSL on attribute



HI,

	I have the following XML codes:
...
<BoughtStuff>
<Milk BestBefore="19May2000">
	<Brand>Nestume</Brand>
</Milk>
</BoughtStuff>

	I have the following XSL codes, to convert the above XML doc into
another XML doc:
...
<xsl:template match="BoughtStuff">
<BoughtStuff>
	<xsl:for-each select="Milk">
		<xsl:apply-template select="Brand" />		
	</xsl:for-each>
</BoughtStuff>
...

	I am not sure how to deal with the attribute, like to preserve the
value and the tag at the new XML document. Thank you very much. Wish you
all the best.



Best regards,
Cheun Ngen CHONG



 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]