This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Passing Variables to XSL Templates


I don't know if it helps, but if your variable is a parameter in the URI,
write :
<xsl:param name="name" />
at the beginning of the stylesheet (just after your <xsl:stylesheet> root
tage, and before any <xsl:template match="..."> )

then you'll have access to $name as the variable. Since "name" is a reserved
word, I don't know if you can use it as a variable name...

and the function you want to use is name(.) , not NAME.

Frederic

----- Original Message -----
From: "Joshua Miller" <josh.miller@eagletgi.com>
To: "Xsl-List@Lists.Mulberrytech.Com" <xsl-list@lists.mulberrytech.com>
Sent: Wednesday, June 27, 2001 1:47 PM
Subject: [xsl] Passing Variables to XSL Templates


> Greetings,
>
> Newbie question for the XSL masters - is there anyway that I can pass a
> variable into an XSL Template to populate a CASE statement?
>
> Want to do something like: <xsl:if match=".[NAME='$name']">
> But the variable will be coming from either ColdFusion, ASP, JAVA or
> somewhere else.
>
> Is this possible???
>
> Joshua Miller
> Web Development::Programming
> Eagle Technologies Group, Inc.
> www.eagletgi.com
> josh.miller@eagletgi.com
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]