vote up 0 vote down star

In my Application_Error event handler i want to render an MVC-View for 404. I do not want to redirect because of SEO.

void Application_Error(...)
{
 if (serverException is HttpException && ((HttpException)serverException).GetHttpCode() == 404)
 {
  Server.Transfer("/error/404"); //*
 }
}

//* Fails, because it cannot find the path on disk. Of course not because it should be handled by MVC.

How to render an MVC-View from Application_Error?

I do not want to redirect.

flag

45% accept rate

2 Answers

vote up 1 vote down

Just don't use Application_Error to handle 404 errors. Define a catch all route:

routes.MapRoute(
    "Error", 
    "{*url}", 
    new { controller = "Error", action = "Http404" });

A request that doesn't match another route will be handled by the Http404 action of the Error controller.

link|flag
I am still using Webforms. I want a catch all solution that works for any 404 sent to the client. – usr Sep 5 at 11:18
vote up -1 vote down

look at the response in this question Link

link|flag
I am still using Webforms. I want a catch all solution that works for any 404 sent to the client. – usr Sep 5 at 11:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.