环境 :
- 视觉工作室 2008
- 提琴手2
IHttpHandler 在 chrome 上执行两次,
在这一点上,我已经被这个问题困扰了几个小时,我无法弄清楚这个问题。
我有一个 IHttpHandler 如下,
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
public bool IsReusable {
get {
return false;
}
}
当我在 chrome 上执行它时,它会发送第二个请求
如果我在 IE8 上执行它,它只发送一个请求
提前致谢