Exemplo n.º 1
0
        public static void TransformUsingXslt()
        {
            string sourcefile  = Path.Combine(HttpRuntime.AppDomainAppPath, "xml/Project4.xml");
            string xsltfile    = Path.Combine(HttpRuntime.AppDomainAppPath, "xslt/commercial.xslt");
            string destination = Path.Combine(HttpRuntime.AppDomainAppPath, "xml/commercials.xml");

            TransformXslt transform = new TransformXslt(sourcefile, xsltfile, destination);

            transform.TransformXml();
        }
Exemplo n.º 2
0
        public void TransformUsingXslt()
        {
            string sourcefile  = HttpContext.Current.Server.MapPath("xml/Project4.xml");
            string xsltfile    = HttpContext.Current.Server.MapPath("xslt/commercial.xslt");
            string destination = HttpContext.Current.Server.MapPath("xml/commercials.xml");

            TransformXslt transform = new TransformXslt(sourcefile, xsltfile, destination);

            transform.TransformXml();
        }