当前位置:主页 > 软件编程 > ASP代码 >

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

时间:2020-11-28 14:08:14 | 栏目:ASP代码 | 点击:

复制代码 代码如下:

<%
'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))
%>

您可能感兴趣的文章:

相关文章