Use XslCompiledTransform

image_pdfimage_print
   

using System;
using System.Xml.Xsl;

class MainClass {
    public static void Main() {
        XslCompiledTransform transform = new XslCompiledTransform();

        transform.Load("orders.xslt");
        transform.Transform("orders.xml", "orders.html");
    }
}

           
          


This entry was posted in XML-RPC. Bookmark the permalink.