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]

Getting all the attribute values


why my output looks like this if I run this xsl?

xsl

<xsl:template match="years">
  <xsl:for-each select="@*">
 	<xsl:value-of select="."/>
 </xsl:for-each>
</xsl:template>

xml

<years title="year" century="20th" month="April" Day="Thursday"/>

output

Thursday20thAprilyear


why it's not extracting in the right order?


Francis


 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]