I am currently adding exception management inside of our application.
In the application I have a layout that basically shows a news section that is rendered via @Html.Action("news")
so far when an exception occurs I can show an error message on the news section saying "well it crashed" but it's not quite the best appeal...
Is it possible to detect it at the parent level and redirect to an error page if a child action encountered an exception?