Client Disconnected

后端 未结 3 1483
悲&欢浪女
悲&欢浪女 2021-02-07 13:28

I am often getting a Client Disconnected message. I don\'t use load balancing - only a single IIS server. I need to know what is causing this and how to fix it.

Here is

3条回答
  •  清酒与你
    2021-02-07 13:55

    This also happens when your page allows the end user to make multiple partial postbacks without waiting for the response. Meaning, Assume a table where a click on a row does a partial postback and shows him the details of that row. Now if the user one row and without waiting for details, clicks another row... chances are there this exception to occur.

    The ASP.NET AJAX abandons the already executing request when a new async request is made.

    However What remains ununderstood is why does IIS allow such abandoned request to reach ASP.NET at all..

提交回复
热议问题