Imports System.Xml
Imports System.Xml.Xsl
' Transform the file.
Dim xslt As XslTransform = New XslTransform()
xslt.Load(Server.MapPath("XSLTFile.xsl"))
Dim xpath As New XPathDocument(strDatPfad)
Dim nav As XPathNavigator = xpath.CreateNavigator()
Dim writer As XmlTextWriter = New XmlTextWriter(strXmlPfad, Nothing)
xslt.Transform(nav, Nothing, writer)
writer.Close()
So müsst es gehen.
Gruß Martin
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!