Re: [xsl] Modify Variable value

Subject: Re: [xsl] Modify Variable value
From: "Senthilkumaravelan K" <skumaravelan@xxxxxxxxxxxxxx>
Date: Wed, 25 Apr 2007 17:29:04 -0700
Hi ,
cna you give me the example how I could do that?
Regards,
Senthil

On 4/25/07, David Carlisle <davidc@xxxxxxxxx> wrote:

> I would like to know ,is there any way,I could modify the variable > value in my XSLT?

a variable will always have the same value within a given scope,
variables that need to be passed different values as teh scope is
re-edered are called parameters and the value is passed in using
<xsl:with-param name="x" select="2"/>
which will bind $x to teh value 2 in the templates being called.

David

Current Thread