jeorg
12-08-2002, 11:40 AM
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")
tal.AddParam("myOtherParam", "", "anyOtherValue")
With mX
.DocumentSource = "notes.xml"
.TransformSource = "notes.xsl"
.TransformArgumentList = tal
End With
--------------------------------------------------
is it possible to do it with javascript ? and how ?
thank you
Dim tal As New XsltArgumentList()
tal.AddParam("myParam", "", "anyValue")
tal.AddParam("myOtherParam", "", "anyOtherValue")
With mX
.DocumentSource = "notes.xml"
.TransformSource = "notes.xsl"
.TransformArgumentList = tal
End With
--------------------------------------------------
is it possible to do it with javascript ? and how ?
thank you