Dear Friends,
My codes gets the page but turkish characters are seen as "?". I tried string functions, page encodings etc but nothing has changed... If you try this you will see "?"s. What should I add this code to see the turkish pages correctly.
Thanks in advance...
<%
dim objXMLHTTP
URL = "
http://www.hurriyet.com.tr"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "GET", URL, false
objXMLHTTP.Send
Response.Write "<hr>"
Response.Write "<h4>Anonymous Surfing To "&URL&"</h4>"
Response.Write "<frame>"
Response.Write objXMLHTTP.responseText
Response.Write "</frame>"
Set objXMLHTTP = Nothing
%>