Hi,
I found the XSL Transformation through .NET too complex. The most simplest
overload of System.Xml.Xsl.XslTransform is Transform(inputfile, outputfile),
but this saves the result into file. I need to supply the XmlDocument object
(with the source tree loaded) and receive the output in string.
Traditionally I do this thing in very simple way which is as below:
dom.load "xmldoc.xml"
sdom.load "xsldoc.xsl"
str = dom.transformNode(sdom)
Could someone give the .NET equivalent for above code?
Thanks in advance,
Fahad