views:

123

answers:

1

I would like to have custom error pages unique to an MVC area. Unfortunately, it appears that the Web.config override system doesn't take the MVC folder structure into account. If I want to override an area called "mobile", I have to create a root project folder (in with Views and Controllers) named "mobile" and put the Web.config in there with the new customErrors element.

Is there some better way to do this so that I don't have to create a root folder for any overrides?

+1  A: 

I've been looking for exactly the same thing. One slight change that I do is to use a location element within the main web.config. It's a matter of preference I suppose, but it keeps you from having to create a separate folder and file within your solution. I'd love to know a better way though.

<system.web>
  <customErrors mode="On" defaultRedirect="error" />
</system.web>
.
.
.
<location path="areaName">
  <system.web>
    <customErrors mode="On" defaultRedirect="/areaName/error" />
  </system.web>    
</location>
Zach Parrish