Subject: Re: problems with <xsl:for-each>
From: "Dan Machak" <machak@xxxxxxxxxxxx>
Date: Wed, 4 Aug 1999 12:47:45 -0700
|
Hi Minita,
It looks like the problem is in the following template:
> <xsl:template match="design">
> <xsl:for-each select="design"/>
> <xsl:value-of select="."/>
> </xsl:for-each>
> </xsl:template>
you have:
<xsl:for-each select="design"/>, but it should be:
<xsl:for-each select="design">
Dan
--
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
<> Dan Machak <> machak@xxxxxxxxxxxx <>
<> MS T27A-1 <> 650-604-2388 (VOICE) <>
<> NASA Ames Research Center <> 650-604-3957 (FAX) <>
<> Moffett Field, CA 94035-1000 <> <>
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|