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: selecting a node without its children


You can use @id to get the attribute value in ur XSL like this

<xsl:template match="/">
   <xsl:for-each select="STORY">
     <xsl:for-each select="AUTHOR">
       <xsl:value-of select="@id"/>
     </xsl:for-each> 
   </xsl:for-each> 
</xsl:template>

Francis


> -----Original Message-----
> From: Ben Sorek [mailto:bsorek@surfnotes.com]
> Sent: Thursday, March 30, 2000 6:39 PM
> To: xsl-list@mulberrytech.com
> Subject: RE: selecting a node without its children
> 
> 
> This is my XML
> 
> 	<STORY>
> 		<AUTHOR id="xsw">Stephen King</AUTHOR>
> 	</STORY>
> 
> If I have a template
> 
> <xsl:template match="STORY">
> 	....
> </xsl:template>
> 
> how can i get the id attribute of author inside that template?
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 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]