Re: [xsl] value-of and param

Subject: Re: [xsl] value-of and param
From: "James A. Robinson" <jim.robinson@xxxxxxxxxxxx>
Date: Sun, 08 Oct 2006 08:26:33 -0700
>  i have a param tag with a text value, example
>  
>  <xsl:param name="name" select="sdf"/>

I'm guessing you want to use

  <xsl:param name="name" select="'sdf'"/>

This should give you a 3-character string with the letters
s, d, and f.  Without the quotes, you are attempting to
select the child element named sdf.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
James A. Robinson                       jim.robinson@xxxxxxxxxxxx
Stanford University HighWire Press      http://highwire.stanford.edu/
+1 650 7237294 (Work)                   +1 650 7259335 (Fax)

Current Thread