Subject: Re: trying to set a parameter equal to an elements attribute
From: "Noel Golding" <noel@xxxxxxxxxxxxxxx>
Date: Wed, 21 Aug 2002 16:54:06 -0400
|
other than forget the end xsl:param tag?
----- Original Message -----
From: "Noel Golding" <noel@xxxxxxxxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, August 21, 2002 4:39 PM
Subject: trying to set a parameter equal to an elements attribute
> when I apply the following transformation I get a blank output. can anyone
> tell me what I am doing wrong?
>
> <!-- XML FILE -->
> <root>
> <header volume="8"/>
>
> <article>
> <para>
> Some text here
> </para>
> </article>
> </root>
>
> <!-- XSLT FILE -->
> <xsl:stylesheet version="1.0" xmlns:xsl="">
> <xsl:template match="root">
> <xsl:param name="vol"><xsl:value-of select="header[@volume]"/>
> </xsl:template>
> </xsl:stylesheet>
>
>
>
>
> Thanks
> Noel
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|