problem parsing html using MS.XMLHTTP
I've been working on this asp page for ages now and can not seem to get my head around it,
bascailly when i do a response.write any '£' symbols are being replaced with '?' doing a response.binarywrite shows the correct symbols but this is no good to me as I need to parse the data.
the code I am using is shown below, any help on this matter would be much appreciated.
Thanks Aaron
URL = "http://cgi6.ebay.co.uk/ws/eBayISAPI.dll?ViewSellersOtherItems&include=0&user id=grand2010&sort=2&rows=25&since=-1&rd=1"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")'
objXMLHTTP.Open "GET", URL, false
objXMLHTTP.Send
sHTML = objXMLHTTP.responseText
response.Write(sHTML)
Set objXMLHTTP = Nothing
|