ASP converts XML to XHTML implementation code on the server. Friends who need it can refer to it. Copy the code code as follows:
<%
'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))
%>