Domanda

Nel mio progetto web MVC. Sto cercando di mostrare pagine di errore personalizzate per i miei visitatori senza usare "custromerrors" elemento in web.config.

posso intercettare le eccezioni come qui di seguito

protected void Application_Error(object sender, EventArgs e)
{

    Exception exception = Server.GetLastError();

    bool success = RaiseErrorSignal(exception);

    Response.Clear();

    HttpException httpException = exception as HttpException;

    RouteData routeData = new RouteData();
    routeData.Values.Add("controller", "Error");

    if (httpException == null)
    {
        routeData.Values.Add("action", "Index");
    }
    else //It's an Http Exception, Let's handle it.
    {
        switch (httpException.GetHttpCode())
        {
            case 404:
                // Page not found.
                routeData.Values.Add("action", "Error404");
                break;
            case 500:
                // Server error.
                routeData.Values.Add("action", "Error500");
                break;

            // Here you can handle Views to other error codes.
            // I choose a General error template  
            default:
                routeData.Values.Add("action", "Index");
                break;
        }
    }

    // Pass exception details to the target error View.
    routeData.Values.Add("error", exception);

    // Clear the error on server.
    Server.ClearError();

    // Call target Controller and pass the routeData.
    IController errorController = new ProjectName.WebSite.Controllers.ErrorController();
    errorController.Execute(new RequestContext(
         new HttpContextWrapper(Context), routeData));


}

private static bool RaiseErrorSignal(Exception e)
{
    var context = HttpContext.Current;
    if (context == null)
        return false;
    var signal = ErrorSignal.FromContext(context);
    if (signal == null)
        return false;
    signal.Raise(e, context);
    return true;
}

Ma Elmah sopraelevazione registrare gli errori anche io sto alzando segnale di errore.

È stato utile?

Soluzione

Ho trovato il problema, ho perso una sezione web.config. Ho aggiunto modulo "ErrorLog" per <system.webserver><modules>.

Ho anche bisogno di aggiungerlo al <system.web><httpModules>.

Dopo aver aggiunto, Elmah iniziare a registrare gli errori.

Anche io non ho bisogno di chiamare il metodo ErrorSignal.Raise (), Elmah in grado di rilevare gli errori senza segnalare.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top