XML, ASP And Foreign Languages
Certain page i wish to extract inforamation from.
Some of the information is Hebrew chars.
Using the following code the Hebrew chars are corrupted and finally displayed as "??? ?? ?" etc.
Code:
Set objXml = Server.CreateObject("Microsoft.XMLHTTP")
FileToGet="http://.......asp"
objXml.Open "GET", FileToGet, False
objXml.Send
response.write "<xml>" & objXml.responseText & "</xml>"
What can be done to prevent this from happening?
Any Server object that supports foreign languages?
Thx...