Return to Snippet

Revision: 21139
at December 4, 2009 10:22 by victorboba


Initial Code
// Load the style sheet.
XslCompiledTransform xslt = new XslCompiledTransform();
xslt.Load("output.xsl");

// Execute the transform and output the results to a file.
xslt.Transform("books.xml", "books.html");

Initial URL


Initial Description


Initial Title
How to use XSLT and C# to transform XML

Initial Tags
xml

Initial Language
C#