I have one XML & DTD which defines that Employee has one attribute <EMPLOYEE id="101"> --- --- <EMPLOYEE> how to fetch that Attribute value in XSL ? <xsl:attribute name="id"> doesnt work regards Pashmina
<xsl:attribute name="id"> is for creating xml-attributes. to fetch use something similar to <xsl:value-of select="//EMPLOYEE/@id"/> zvon tutorial [ March 19, 2003: Message edited by: Axel Janssen ] [ March 19, 2003: Message edited by: Axel Janssen ]