RE: [xsl] Parameters

Subject: RE: [xsl] Parameters
From: "Gertjan Assies" <Gertjan.Assies@xxxxxxxxxxxxxx>
Date: Mon, 28 Oct 2002 16:36:41 +0100
Paulo,

>From your URL I see your language of choice is ASP
then you probable will be using MSXML
In that case you can use the following code
In here aXML and aXSL are both DOMDocument objects

Set aXSLTempl = Server.CreateObject("MSXML2.XSLTemplate")
Set aXSLTempl.stylesheet = aXSL
Set aXSLProc = aXSLTempl.createProcessor
aXSLProc.input = aXML
aXSLProc.addParameter "name", "value" 
aXSLProc.addParameter "anothername", "anothervalue" 
aXSLProc.Transform
sResult = aXSLProc.output

in your xsl you can then say

<xsl:param name="name" />
<xsl:param name="anothername" />

HTH,
Gertjan Assies
webdeveloper


-----Original Message-----
From: Paulo (Shape.Tech) [mailto:paulo@xxxxxxxxx] 
Sent: Monday, October 28, 2002 2:53 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Parameters

Hi all,
everybody knows if it´s possible I get a param value from an URL with XSLT ?
for exemple:

www.xxx.com.br/index.asp?op=abc.xsl

can I get this OP value with xslt ?

thanks
Paulo Fabiano Langer
Web DEsigner/Develper

Rio de Janeiro - BRazil


 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