XslTransform/Could not find file error
When I try to recreate an Xslt Transform I get the error
System.IO.FileNotFoundException but the file it is looking for is in the correct path location.
I am using
Imports System
Imports System.IO
Imports System.Xml
......
Dim myXslTransform As Xml.Xsl.XslTransform = New Xml.Xsl.XslTransform()
Dim myResolver As XmlUrlResolver = New XmlUrlResolver()
....
myXslTransform.Transform(xmlDocToGet, htmlFile)
System.Diagnostics.Process.Start(htmlFile)
|