parse html to xml

speed2006

New Member
I am trying to figure out how to parse html to xml, but I cannot figure it out.I want to use the MSXML2.ServerXMLHTTP object (in an .asp file).\[code\]<% url = "http://www.website.com/file.asp"set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP") xmlhttp.open "POST", url, false xmlhttp.sendResponse.write xmlhttp.responseTextset xmlhttp = nothing %>\[/code\]This gives me the text, but I really don't know where to go from here.Any ideas? Thanks.
 
Back
Top