<%

  'Load the XML

  set xml = Server.CreateObject("Microsoft.XMLDOM")

  xml.async = false

  xml.load(Server.MapPath("cd_catalog.xml"))

  'Load the XSL

  set xsl = Server.CreateObject("Microsoft.XMLDOM")

  xsl.async = false

  xsl.load(Server.MapPath("cd_catalog.xsl"))

  'Transform the file

  Response.Write(xml.transformNode(xsl))

  %>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-19
  • 2021-05-15
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
  • 2022-01-29
猜你喜欢
  • 2021-04-30
  • 2021-12-31
  • 2022-01-13
  • 2021-06-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案