Environment :
- Visual Studio 2008
 - Fiddler2
 
IHttpHandler execute twice on chrome ,
I've been stuck on this problem for hours at this point and I can't figure out the problem.
i have a IHttpHandler as below ,
 public void ProcessRequest (HttpContext context) {
        context.Response.ContentType = "text/plain";
        context.Response.Write("Hello World");
    }
    public bool IsReusable {
        get {
            return false;
        }
    }
when i execute it on chrome , it will send second requests
if i execute it on IE8 , it only send one request
thanks in advance