|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Local-Global Variable help
If you want to create a local variable in template A, and use it in template
B, and you call template B from template A, then you call template B with a
parameter.
e.g. <xsl:template match="..."> <xsl:varable name="myvar" select="..."/> . . <xsl:call-template name="B"> <xsl:with-param name="myparam" select="$myvar"/> </xsl:call-template> </xsl:template> <xsl:template name="B"> <xsl:param name="myparam"/> . . . </xsl:template> From: <m.core@xxxxxxxxxxxxxxxx> _________________________________________________________________ Be the first to hear what's new at MSN - sign up to our free newsletters! http://www.msn.co.uk/newsletters
|
Purchase Stylus Studio Online Today!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






