I am moving some code forward from .NET 1.1. I was able to load the XSL file
and perform the transform. The MSDN documentation looks like it should be
easy. But I get a compile error. Ideas ? How can I share my XSLT ( there
are 2 helper stylesheets, and I check that they are also available... the
loaded xsl makes reference to the helper xsl files. Where should I start
looking ?
// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
xslt.Load(XSLDo cPath); // ERROR HERE
// Transform the file.
errBefore = " xslt.Transform( xmlDocPath....) ;";
xslt.Transform( xmlDocPath, outputFileName) ;
--
Andrew
and perform the transform. The MSDN documentation looks like it should be
easy. But I get a compile error. Ideas ? How can I share my XSLT ( there
are 2 helper stylesheets, and I check that they are also available... the
loaded xsl makes reference to the helper xsl files. Where should I start
looking ?
// Load the stylesheet.
errBefore = "xslt.Load(XSLD ocPath....);";
xslt.Load(XSLDo cPath); // ERROR HERE
// Transform the file.
errBefore = " xslt.Transform( xmlDocPath....) ;";
xslt.Transform( xmlDocPath, outputFileName) ;
--
Andrew
Comment