Does anyone see anything wrong with this? I can not get anything to display. Any help would be great or some sort of direction. Thank You
Code:
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<%
response.expires=-1
q=request.querystring("q")
set xmlDoc=Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load(Server.MapPath("ids.xml"))
set nodes=xmlDoc.selectNodes("CATALOG/SONG[ID='" & q & "']")
for each x in nodes
for each y in x.childnodes
response.write("<b>" & y.nodename & ":</b> ")
response.write(y.text)
response.write("<br />")
next
next
%>
</body>
</html>