PDA

View Full Version : transforming XML + params


jeorg
12-07-2002, 06:23 PM
with asp net it is very simple to transform a xml file with xsl and params or variables

Dim tal As New XsltArgumentList()
tal.AddParam("myParam", "", "anyValue")

With mX
.DocumentSource = "notes.xml"
.TransformSource = "notes.xsl"
.TransformArgumentList = tal
End With
--------------------------------------------------

is it possible to do it with javascript ? and how ?

thank you