Monthly Archives: October 2007

XSLT transform in asp with Microsoft.XMLDOM

I recently had to transform an xml file into a scorm manifest file. I wanted it to be in UTF-8, but Microsoft.XMLDOM‘s transform method disregards the encoding setting in xsl:output. The transformNodeToObject method doesn’t. I also found out I had to use the save method on the output object instead of writing a file based on the xml property. You’ll find the function I ended up writing to assist me below:

Continue reading

Posted in asp | Comments Off on XSLT transform in asp with Microsoft.XMLDOM