jscheuer1,
just like to confirm...
the most possible reason the page not shown properly is cause by the encoding problem.
so if the main page encoding is GBK, for the external link, it should contained everything like below..
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=GBK">
</head>
<body>
the content of the page
</body>
</html>
am i right?
actually, i also tried to remove the red fonts (mentioned in my 1st post) and do something like this here:
if (bustcachevar) //if bust caching of external page
bustcacheparameter=(url.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
page_request.open('GET', url+bustcacheparameter, true)
page_request.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset:GBK");
page_request.overrideMimeType("text/html; charset=GBK");
page_request.send(null)
it works fine in Firefox, but in IE, it only display the status of "loading..." it can't get to display the content of the page...
Bookmarks