zoukankan      html  css  js  c++  java
  • 终止线程 Response.End 在Asp.net 里面的正确使用

    PRB:在使用 Response.End、Response.Redirect 或 server.Transfer 时出现 ThreadAbortException

    症状
    如果使用 Response.End、Response.Redirect 或 Server.Transfer 方法,将出现 ThreadAbortException 异常。您可以使用 try-catch 语句捕获此异常。

    原因
    Response.End 方法终止页的执行,并将此执行切换到应用程序的事件管线中的 Application_EndRequest 事件。不执行 Response.End 后面的代码行。

    此问题出现在 Response.Redirect 和 Server.Transfer 方法中,因为这两种方法均在内部调用 Response.End。

    解决方案
    要解决此问题,请使用下列方法之一: • 对于 Response.End,调用 HttpContext.Current.ApplicationInstance.CompleteRequest()方法而不是 Response.End ()以跳过 Application_EndRequest 事件的代码执行。
    • 对于 Response.Redirect,请使用重载 Response.Redirect(String url, bool endResponse),该重载对 endResponse 参数传递 false 以取消对 Response.End 的内部调用。例如:
    Response.Redirect ("nextpage.aspx", false);
    如果使用此替代方法,将执行 Response.Redirect 后面的代码。

    • 对于 Server.Transfer,请改用 Server.Execute 方法。

     经测试, Response.End 才能正常的终止服务器继续输出内容到浏览器。

    另外当Response.End()是用到页面的输出Json格式API接口时候,方法HttpContext.Current.ApplicationInstance.CompleteRequest()不能替代Response.End()

    Response.End()可以禁止继续向页面输出内容(两者的区别在查看页面源代码中发现)。

  • 相关阅读:
    Mysql8.0中caching_sha2_password报错解决
    Centos7 安装mysql-8.0.18(rpm)
    如何有效的清理yum缓存
    虚拟机安装后配置IP地址
    正确计算linux系统内存使用率
    Linux 怎样更改locale语言设置
    linux把EDT时间修改为CST格式
    开放接口的安全验证方案(AES+RSA)
    Linux下JDK中文字体乱码
    服务器http请求https服务时报错解决方案
  • 原文地址:https://www.cnblogs.com/kangzi/p/4127066.html
Copyright © 2011-2022 走看看