ASP는 서버에서 XML을 XHTML 구현 코드로 변환합니다. 필요한 친구는 이를 참조할 수 있습니다. 다음과 같이 코드 코드를 복사합니다.
<%
'XML 로드
xml = Server.CreateObject(Microsoft.XMLDOM) xml.async = false xml.load(Server.MapPath(cdcatalog.xml)) 설정
'XSL 로드
xsl = Server.CreateObject(Microsoft.XMLDOM) xsl.async = false xsl.load(Server.MapPath(cdcatalog.xsl)) 설정
'파일 변환
응답.쓰기(xml.transformNode(xsl))
%>