RE: [xsl] template value input

Subject: RE: [xsl] template value input
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Wed, 17 Sep 2003 17:31:38 +0100
normally u would place the result of processing into an xsl:variable ala

<xsl:variable name="somevar">
some template processing
</xsl:variable>

then <xsl:with-param name="text" select="$somevar"/>

though if you want a nodeset, u must use nodeset() function 

otherwise in your case you could probably just do something simpler ( untested ! )

<xsl:with-param name="text">
	result of some processing
</xsl:with-param>


gl, jim fuller

http://www.dpawson.co.uk/xsl/sect2/nono.html#d465e34

-----Original Message-----
From: clemens schrenk [mailto:clemens.schrenk@xxxxxxx]
Sent: 17 September 2003 17:17
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] template value input


how can i insert the outcome of a template into another template at the
place of the word space ?
<xsl:with-param name="text" select="space"/>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread