是因为这个default.asp页面中做了转向;你可以用vs 2005打开这个http://www.thomasglobal.com/Default.asp 地址就会看到下面内容。可以看到用js做了转向
[code]
<HTML xmlns:BHAWK><HEAD><STYLE>@media all { BHAWK\:clientCaps {behavior:url(#default#clientcaps)} }</STYLE>
<!-- These scripts are provided under the terms of the BrowserHawk license agreement
and may not be copied or used otherwise. [9, 0, 0, 20 Enterprise; BDD ver: 9.00] See cyscape.com for details.
Copyright (C) 1999-2005 cyScape, Inc. All rights reserved.
-->
<noscript><meta http-equiv="refresh" content="0; url=/Default.asp?bhjs=0"><a href="/Default.asp?bhjs=-1">Please click here to continue</a></noscript>
<script language="JavaScript">
<!--
function bhawkGetVer(id) {
var bha = "";
try {bha = document.all("caps").getComponentVersion(id, "ComponentID");} catch (e) {}
return bha;
}
// -->
</script>
<script language="JavaScript">
<!--
function bhawkTest() {
var hashIndex = self.location.href.indexOf("#");
if (hashIndex == -1) {
hash = "";
} else {
hash = self.location.href.substring(hashIndex);
}
var rs = "bhjs=1";
if (document.cookie.indexOf("bhCookieSess=1") != -1) {
document.cookie = "bhResults="+rs+"; path=/";
document.cookie = "bhPrevResults="+rs+"; path=/";
if (document.cookie.indexOf("bhResults") != -1)
self.location.replace("/Default.asp?bhcp=1"+hash);
else self.location.replace("/Default.asp?"+rs+"&bhqs=1"+hash);
}
else self.location.replace("/Default.asp?"+rs+"&bhqs=1"+hash);
}
// -->
</script>
<title></title></head>
<noscript><body onLoad="bhawkTest();"></noscript>
<script>document.write('<body onLoad="bhawkTest();">');</script>
<BHAWK:clientCaps ID="caps" />
</body></html>
[/code]