当前位置:Gxlcms > ASP > asp在服务器把 XML 转换为 XHTML的实现代码

asp在服务器把 XML 转换为 XHTML的实现代码

时间:2021-07-01 10:21:17 帮助过:32人阅读

代码如下:

<%
'Load XML
set xml = Server.CreateObject("Microsoft.XMLDOM") xml.async = false xml.load(Server.MapPath("cdcatalog.xml"))
'Load XSL
set xsl = Server.CreateObject("Microsoft.XMLDOM") xsl.async = false xsl.load(Server.MapPath("cdcatalog.xsl"))
'Transform file
Response.Write(xml.transformNode(xsl))
%>

人气教程排行