Contents of xml4a.asp:


<%
Set xmla = Server.CreateObject("Microsoft.XMLDOM")
xmla.load(Request)

set root=xmla.documentElement

response.write "Received XML OK. Here is the data:"+chr(10)+chr(13)

for i= 0 to root.ChildNodes.Length-1
response.write "<br>child="+cstr(i)+" value="+root.childNodes(i).text+chr(10)+chr(13)
next

set root=nothing
%>



 

 

***** end of file *** printed: 18 lines on: 11/23/2009 6:10:27 AM