S
shapper
Hello,
I have a function which is transforming a XML file into another XML
file using a XSL file.
Function GetXML()
...
Dim myXml As XmlDocument = New XmlDocument
...
myXsl.Transform(myXml, myXslArguments,
HttpContext.Current.Response.Output)
...
End Function
Instead of displaying, in the browser, the resulting XML I want to
return it so I can display it later in the browser as a XML document.
How can I do this?
Thanks,
Miguel
I have a function which is transforming a XML file into another XML
file using a XSL file.
Function GetXML()
...
Dim myXml As XmlDocument = New XmlDocument
...
myXsl.Transform(myXml, myXslArguments,
HttpContext.Current.Response.Output)
...
End Function
Instead of displaying, in the browser, the resulting XML I want to
return it so I can display it later in the browser as a XML document.
How can I do this?
Thanks,
Miguel