displaying an XML string

wxdqz

New Member
I have an ASP page with a session variable that contains a XML string. Iwant to parse and display this string in a certain part of the page. Forsome reason, I am having trouble creating the objects needed to load anddisplay the string. How do I create the objects and parse the string so itlooks normal on my page? Here is the script getting the string:xmlProduct = Request.QueryString("xmlProduct")Set objXML = server.CreateObject("Microsoft.XMLDOM")objXML.async = FalseCall objXML.Load(xmlProduct)Where do I go from here?
 
Back
Top