0

私はいつもエラーが発生します:

 A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

説明: 現在の Web 要求の実行中に未処理の例外が発生しました。エラーの詳細とコード内のどこでエラーが発生したかについては、スタック トレースを確認してください。

ここで、プロジェクトを 1 つのページにリダイレクトして、"We will back soon" というメッセージを表示するか、発生したエラー メッセージの横に別の何かを表示したいと考えています。

私のasp.net mvc 2.0プロジェクトでこれを行う方法を誰か教えてもらえますか?

ありがとう。

4

1 に答える 1

2

Application_Errorでイベントを使用できますGlobal.asax

protected void Application_Error()
{
    var exception = Server.GetLastError();
    var sqlException = exception as SqlException;
    // See http://msdn.microsoft.com/en-us/library/cc645603.aspx 
    // for a full list of error numbers that you might be interested in
    if (sqlException != null && sqlException.Number == 2)
    {
        // it was a SqlException with error number = 2 meaning that this
        // is the exception that you wanted to handle => we redirect to some page
        Response.Clear();
        Server.ClearError();
        Response.Redirect("~/Offline.htm");
    }
}
于 2012-07-19T08:19:10.547 に答える