Great, thanks for the information. And concerning why I use that method, that's the method that I found at W3Schools' website:
Code:
<%
'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))
%>
I didn't think it was that big of a deal, because it works very well. But if you know of a better and/or more efficient way of parsing the data besides this method, please let me know. Thanks again for your help Joe.
KWilliams