Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an error page located at Errors/Error in my ErrorsController. If I create an error it redirects me to that page fine. However I get a error email from Elmah stating the message below. Is there a reason why I am getting this message even thought my error page displayed fine?

System.InvalidOperationException: The view 'Error' or its master was not found or no view engine supports the searched locations. The following locations were searched: ~/Views/divisions/Error.cshtml ~/Views/divisions/Error.vbhtml ~/Views/Shared/Error.cshtml ~/Views/Shared/Error.vbhtml

Web.Config

   <customErrors mode="Off" defaultRedirect="~/Error">
          <error statusCode="404" redirect="~/PageNotFound" />
      </customErrors>
share|improve this question
These should not be at the root. They have to be in the Views\divisions or Views\Shared folder. The reason it's displaying is likely because IIS is showing it, bypassing MVC. – Mystere Man Oct 29 '12 at 21:29
Add your Elmah web.config portion, if it's sending you emails, then it's configured to do so. – Erik Philips Oct 29 '12 at 21:42
what do you mean 'if you create an error'? – Tommy Oct 29 '12 at 21:45
If I go to a controller action that does supply a correct parameter it will throw an error and redirecto my error page. – Mike Flynn Oct 29 '12 at 22:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.