Reading xml data using classic ASP

airjsorsdanxoy

New Member
I have written a code for reading xml data in classic asp as follows:\[code\]<% Dim objxml Set objxml = Server.CreateObject("Microsoft.XMLDOM") objxml.async = False objxml.load ("/abc.in/xml.xml")set ElemProperty = objxml.getElementsByTagName("Product")set ElemEN = objxml.getElementsByTagName("Product/ProductCode")set Elemtown = objxml.getElementsByTagName("Product/ProductName")set Elemprovince = objxml.getElementsByTagName("Product/ProductPrice") Response.Write(ElemProperty)Response.Write(ElemEN) Response.Write(Elemprovince)For i=0 To (ElemProperty.length -1) Response.Write " ProductCode = " Response.Write(ElemEN) Response.Write " ProductName = " Response.Write(Elemtown) & "<br>" Response.Write " ProductPrice = " Response.Write(Elemprovince) & "<br>"nextSet objxml = Nothing %>\[/code\]This code is not giving proper output.Please help me out.The xml is:\[code\]<Product> <ProductCode>abc</ProductCode> <ProductName>CC Skye Hinge Bracelet Cuff with Buckle in Black</ProductName></Product>\[/code\]
 
Back
Top