.net正在終止線程異常

try
{
sting host = context.Request.UrlReferrer.Host;
if ( 程序判斷)

context.Response.Clear();
context.Response.ContentType = "application/octet-stream";
context.Response.WriteFile(file.FullName);
context.Response.End();
}
}
catch (Exception e)
{
HttpContext.Current.Response.Redirect("/default.aspx?key=" + e.Message);
context.Response.End();app

}url

症狀若是使用 Response.EndResponse.Redirect 或 Server.Transfer 方法,將出現 ThreadAbortException 異常 正在停止線程。您可使用 try-catch 語句捕獲此異常。 緣由spa

<!-- Inject Script Filtered -->線程

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 方法。code

相關文章
相關標籤/搜索