Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7059241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:12:31+00:00 2026-05-28T04:12:31+00:00

I have been capturing exceptions and redirecting users to an error page. I pass

  • 0

I have been capturing exceptions and redirecting users to an error page. I pass the exception message and a return URL to tell the user what happened and allow them to return another page.

        try
        {
            return action(parameters);
        }
        catch (Exception exception)
        {
            ErrorViewModel errorModel = new ErrorViewModel();
            errorModel.ErrorMessage = "An error occured while doing something.";
            errorModel.ErrorDetails = exception.Message;
            errorModel.ReturnUrl = Url.Action("Controller", "Action");
            return RedirectToAction("Index", "Error", errorModel);
        }

This seems like way too much code to wrap around every action. I am using a global filter for errors:

    public static void RegisterGlobalFilters(GlobalFilterCollection filters)
    {
        HandleErrorAttribute attribute = new HandleErrorAttribute();
        filters.Add(attribute);
    }

and I have my web.config setup like this:

<customErrors mode="On" defaultRedirect="~/Error/Unknown">

But, this only works for unhandled exceptions.

I want exceptions to cause a redirect to an error controller/action taking a parameter holding the exception details. It would be nice if I could indicate the return URL on a action-by-action basis, or to have a default if none is provided.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T04:12:31+00:00Added an answer on May 28, 2026 at 4:12 am

    Here is a little RedirectOnErrorAttribute class I created:

    using System;
    using System.Web.Mvc;
    using MyApp.Web.Models;
    
    namespace MyApp.Web.Utilities
    {
        public class RedirectOnErrorAttribute : ActionFilterAttribute
        {
            /// <summary>
            /// Initializes a new instance of a RedirectOnErrorAttribute.
            /// </summary>
            public RedirectOnErrorAttribute()
            {
                ErrorMessage = "An error occurred while processing your request.";
            }
    
            /// <summary>
            /// Gets or sets the controller to redirect to.
            /// </summary>
            public string ReturnController { get; set; }
    
            /// <summary>
            /// Gets or sets the action to redirect to.
            /// </summary>
            public string ReturnAction { get; set; }
    
            /// <summary>
            /// Gets or sets the error message.
            /// </summary>
            public string ErrorMessage { get; set; }
    
            /// <summary>
            /// Redirects the user to an error screen if an exception is thrown.
            /// </summary>
            /// <param name="filterContext">The filter context.</param>
            public override void OnActionExecuted(ActionExecutedContext filterContext)
            {
                if (filterContext.Exception != null && !filterContext.ExceptionHandled)
                {
                    ErrorViewModel viewModel = new ErrorViewModel();
                    viewModel.ErrorMessage = ErrorMessage;
                    viewModel.ErrorDetails = filterContext.Exception.Message;
                    string controller = ReturnController;
                    string action = ReturnAction;
                    if (String.IsNullOrWhiteSpace(controller))
                    {
                        controller = (string)filterContext.RequestContext.RouteData.Values["controller"];
                    }
                    if (String.IsNullOrWhiteSpace(action))
                    {
                        action = "Index";
                    }
                    UrlHelper helper = new UrlHelper(filterContext.RequestContext);
                    viewModel.ReturnUrl = helper.Action(action, controller);
                    string url = helper.Action("Index", "Error", viewModel);
                    filterContext.Result = new RedirectResult(url);
                    filterContext.ExceptionHandled = true;
                }
                base.OnActionExecuted(filterContext);
            }
        }
    }
    

    Now, I can decorate all of my actions like this:

    [RedirectOnError(ErrorMessage="An error occurred while doing something.", ReturnController="Controller", ReturnAction="Action")]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that log4j by default outputs to stderror. I have been capturing the
Have been looking at the MVC storefront and see that IQueryable is returned from
Have been studying the file system related classes of Adobe AIR 1.5, but so
Have been struggling with Javascript closure for a while trying to wrap brain around
We have been using CruiseControl for quite a while with NUnit and NAnt. For
I have been experimenting with woopra.com A web analytics tool. Which requires a piece
I have been working on a web services related project for about the last
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
I have been looking into IKVMing Apache's FOP project to use with our .NET
I have been searching everywhere for the following functionality in Lisp, and have gotten

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.