1

我有一个 Web 应用程序,用户开始上传大文件。为了避免错误,我这样做了:

1- 设置 httpRuntime maxRequestLength。
2- 将 Global.asax 的 Application_Error 函数编辑为:

                Server.ClearError();
                Response.Redirect(Request.RawUrl, false);
                return;

当我打开提琴手时,一切都很好,并且用户被重定向到同一页面。但是如果 fiddler 关闭,浏览器会显示:

错误 101 (net::ERR_CONNECTION_RESET):连接已重置。

我究竟做错了什么?

4

0 回答 0