Subject: Re: param - default settings
From: Goetz Bock <bock@xxxxxxxxxxx>
Date: Tue, 30 Oct 2001 11:43:56 +0100
|
On Tue, Oct 30 '01 at 10:25, Ingo Friepoertner wrote:
> I start processing my xml/xsl files with some param's.
>
> I thought I could define default values if some param's were not set .
> But this doesn't work:
>
> <xsl:param name="abs" select="1" />
This would select the value of the <1> node in the current context,
there is no such node and the nodename is invalid anyway
but
<xsl:param name="abs" select="'1'"/>
or
<xsl:param name="abs">1</xsl:param>
both work.
--
Goetz Bock IT Consultant
Dipl.-Inf. Univ.
Attachment:
pgp00023.pgp
Description: PGP signature
|