Response.End与ApplicationInstance.completeRequest

原贴:

http://www.cnblogs.com/joejoe/archive/2007/11/26/972866.html

 

终止线程 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 才能正常的终止服务器继续输出内容到浏览器。

 

=======================================

我的测试:  

 

 protected void Page_Load(object sender, EventArgs e)
    {
        try
        {
            Response.Write("11");
            Context.ApplicationInstance.CompleteRequest();
            Response.Write("22");
            Response.End();
        }
        catch
        {
            Response.Write("33");
        }
    }

 

 

Response.End()方法的实现

public void End()
{
    if (this._context.IsInCancellablePeriod)
    {
        InternalSecurityPermissions.ControlThread.Assert();
        Thread.CurrentThread.Abort(new HttpApplication.CancelModuleException(false));
    }
    else if (!this._flushing)
    {
        this.Flush();
        this._ended = true;
        if (this._context.ApplicationInstance != null)
        {
            this._context.ApplicationInstance.CompleteRequest();
        }
    }
}

 

 

internal void CompleteRequest()
{
    this._requestCompleted = true;
    if (HttpRuntime.UseIntegratedPipeline)
    {
        HttpContext context = this._application.Context;
        if ((context != null) && (context.NotificationContext != null))
        {
            context.NotificationContext.RequestCompleted = true;
        }
    }
}
 

Response.End 终止服务器输出,但有可能会throw出线程异常,不处理即可,ms官方对该问题进行了解释,如果你不希望throw出线程错误,则可以采用相关解决方法。

CompleteRequest()是通知结束请求

 

微软官方贴:

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

http://support.microsoft.com/kb/312629/zh-cn

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值