IHttpHandler在chrome上执行两次

时间:2013-10-22 14:01:40

标签: c#

环境:

  1. Visual Studio 2008
  2. Fiddler2
  3. 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上执行它时,它会发送第二个请求

    the image link

    如果我在IE8上执行它,它只发送一个请求

    the image link

    提前致谢

0 个答案:

没有答案