Verdiğimiz kod ile XML dosyaları görüntüleyebilirsiniz.
Bu XML ve XSL dosyalarının isimlerini değiştirip farklı yerlerde kullanabilirsiniz.

<%

xmlDoc = "cars.xml" 
xslDoc = "cars.xsl" 

Set xmlObj = CreateObject("Microsoft.XMLDOM") 
xmlObj.Async = False 
xmlObj.Load(Server.MapPath(xmlDoc)) 

Set xslObj = CreateObject("Microsoft.XMLDOM") 
xslObj.Async = False 
xslObj.Load(Server.MapPath(xslDoc)) 

Response.Write(xmlObj.transformNode(xslObj)) 
Set xmlObj = nothing 
Set xslObj = nothing 

%>