またはイベントが発生したときに、アプリケーションでRedirect
またはを使用できません。Response.Write
Application_End
Application_Error
protected void Application_Error(object sender, EventArgs e)
{
string strError;
strError = Server.GetLastError().ToString();
this.Context.ClearError();
Response.Write("Application_Error" + "<br/>");
Response.Write("Error Msg: " + strError + "<br/>");
}
どんな助けでも大歓迎です、ありがとう
編集済み: アプリケーション プールのリサイクルを検出し、エラー ページにリダイレクトしようとしています。