输出的是错误信息是:“/复件 fb”应用程序中的服务器错误。
--------------------------------------------------------------------------------HTTP 错误 404 - Not Found。 --------------------------------------------------------------------------------
版本信息: ASP.NET Development Server 8.0.0.0 
代码如下:
function req(url)
{
var obj = new ActiveXObject("Microsoft.XMLHTTP");
obj.open("GET",url,true);
obj.onreadystatechange=function()
{
if(obj.readyState == 4)
document.write(obj.responseText);
}
obj.send();
}
req("sy.htm");