system.threading .threadAbortException错误

时间:2017-09-11 08:07:21

标签: threadabortexception thread-exceptions

我正在接管一个现有网站,我正在尝试在我的计算机上运行该应用程序,但是我无法启动该应用程序,因为我收到以下错误。

System.Threading.ThreadAbortException occurred
HResult=0x80131530
Message=Thread was being aborted.
Source=mscorlib
StackTrace:
at System.Threading.Thread.AbortInternal()
at System.Threading.Thread.Abort(Object stateInfo)

这是我的代码

protected void Application_BeginRequest(object sender, EventArgs e) {
            if (DemoWeb.Helpers.Application.ApplicationManager.StartUpError != "") 
         {

           Response.Write("<div class=\"demoweb-securityerror\">" + demoweb.Helpers.Application.ApplicationManager.StartUpError + "</div>");
                Response.End();
          }

如何让它绕过response.end?

1 个答案:

答案 0 :(得分:0)

我得到了它的工作。 我刚刚添加了一个try和catch方法并移动了Response.End

try {
  // code 
  }
catch(exception ex)
  {
   Response.End();
  }