The client disconnected
任何想法为什么这种例外发生?我的应用程序运行在负载平衡的Windows Server 2003 IIS 6.0服务器上。
解决方法
You get the message The client Disconnected.
You’re likely to sporadically get this error message if you’re in a web farm and you have a page where the user can make multiple selections,it typically happens in this scenario:
The user selects a drop down list Box that has an event on postback,but the user does this again before the request is sent back to the user,the user is now creating a second event that is being fired on the other webserver,the prevIoUs webserver tries to return the results of the old event to the user but the user is no longer there because the user is now on the other webserver.
The user will never see an error,but if you’re catching the errors and emailing/logging them you’ll see them like shown below and be totally frustrated. Don’t worry about it,just ignore it it’s not even an problem,as long as you’re trapping this kind of error nothing will go wrong.
06000