Subject: Re: Read a attribute value from XML file
From: "Babu Sathish Ramaraj" <bramaraj@xxxxxxxxxx>
Date: Tue, 7 Jan 2003 14:50:48 +0530
|
Hi,
It's really simple.
<xsl:for-each select="///Column">
<xsl:value-of select="@Title"/>
</xsl:for-each>
Cheers,
Babu Sathish.
----- Original Message -----
From: "Vijaya Kumar Y" <vijayay@xxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, January 07, 2003 2:22 PM
Subject: Read a attribute value from XML file
> Hi
> i have an XML file, as follows
>
> <XML ID="NewsWebSites">
> <ROOT>
> <Site>
> <Column Title="MfgName"/>
>
> </Site>
> <Site>
> <Column Title="Manufactrer"/>
> </Site>
> </ROOT>
> </XML>
>
>
> my question is how to select the value of Title from XSL file
>
> regrads
> Vijay
>
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|