C CSharper Oct 16, 2009 #1 I have bunch of XML and associated XSL files. How do I print the xml file using XSLT? Thanks,
C CSharper Oct 16, 2009 #2 I have bunch of XML and associated XSL files. How do I print the xml file using XSLT? Thanks, Click to expand... Some more information. This is web app and I am planning to develop it in either ASP.Net or Silverlight.
I have bunch of XML and associated XSL files. How do I print the xml file using XSLT? Thanks, Click to expand... Some more information. This is web app and I am planning to develop it in either ASP.Net or Silverlight.
M Martin Honnen Oct 16, 2009 #3 CSharper said: I have bunch of XML and associated XSL files. How do I print the xml file using XSLT? Click to expand... XSLT transforms XML to XML or HTML or plain text. It does not "print". If you want to run XSLT 1.0 transformations in the .NET framework then you can use System.Xml.Xsl.XslCompiledTransform: http://msdn.microsoft.com/en-us/library/0610k0w4.aspx
CSharper said: I have bunch of XML and associated XSL files. How do I print the xml file using XSLT? Click to expand... XSLT transforms XML to XML or HTML or plain text. It does not "print". If you want to run XSLT 1.0 transformations in the .NET framework then you can use System.Xml.Xsl.XslCompiledTransform: http://msdn.microsoft.com/en-us/library/0610k0w4.aspx