asp.net 2.0 现在访问很慢
但服务器的cpu和内存都使用率很低?请问,是什么使用系统访问速度慢的原因??
在线等,急

解决方案 »

  1.   

    如果你代码中有类似这样的代码HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
                    req.Method = "GET";
                    req.Timeout = 5000;
                    req.ContentType = "application/x-www-form-urlencoded";
                    myResponse = (HttpWebResponse)req.GetResponse();你应该注意下!URL是否能正常访问,如果是404或者其他错误,带宽会被站的非常厉害!