Subject: RE: dynamically reading tag-names in XSL
From: Ambarish Chaudhari <ambarish_c@xxxxxxxxx>
Date: Tue, 14 Dec 1999 10:31:51 -0800 (PST)
|
> I think you want to do something like
>
> <xsl:template match="/">
> <xsl:for-each select="stocks/stock">
> <div>
> <xsl:for-each select="*"/>
> <xsl:value-of select="name()"/>
> <xsl:text> = </xsl:text>
> <xsl:value-of select=".">
> <xsl:text> ; </xsl:text>
> </xsl:for-each>
> </div>
> </xsl:for-each>
> </xsl:template>
>
> Mike Kay
Hi Mike (and all),
actually this was closest to what i wanted, thanx.
but i get strange results with it. something like:
= ;
= ;
= ;
I tried on
1. IE
2. xslp processor http://www.kvisco.com
any idea why?
__________________________________________________
Do You Yahoo!?
Thousands of Stores. Millions of Products. All in one place.
Yahoo! Shopping: http://shopping.yahoo.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|