Jump to content

Use xsl and xml to generate html page...


mail.h.shukla

Recommended Posts

What is wrong with the XSL that means the page needs further transformation?

Link to comment
Share on other sites

I think the exact same piece of code W3Schools is using to show XSLT being executed on ASP can be used for VBScript i.e.

'Load XMLset xml = Server.CreateObject("Microsoft.XMLDOM")xml.async = falsexml.load(Server.MapPath("cdcatalog.xml"))'Load XSLset xsl = Server.CreateObject("Microsoft.XMLDOM")xsl.async = falsexsl.load(Server.MapPath("cdcatalog.xsl"))'Transform fileResponse.Write(xml.transformNode(xsl))

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...