using System;
using System.IO;
using System.Xml;
using System.Xml.Xsl;
public class Cap4_Ex31_Test {
public static void Main(string[] args) {
XslTransform xt = new XslTransform();
xt.Load("organizer.xsl");
xt.Transform("organizer.xml", "organizer.html");
}
}
|