Why I’m getting these “file not found exception” errors in the IntelliTrace? The footer.ascx control is located in the “Shared” folder.
Does this mean each of my Html.RenderPartial() will throw 6 exceptions?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
These exceptions are thrown only in debug mode. In release mode, view lookups are cached. So if the view “Footer” is found at ~/Views/Shared/Footer.ascx, the runtime will remember this and not look at the other possible locations for it, so these exceptions won’t be thrown.
See http://codeclimber.net.nz/archive/2009/04/22/how-to-improve-htmlhelper.renderpartial-performances-donrsquot-run-in-debug-mode.aspx for more information.