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.

What is the difference between the customErrors and httpErrors sections of the web.config file in ASP.NET MVC applications?

What are the guidelines for using each section?

Thanks.

Alan T

share|improve this question
1  
IMHO - HttpError is a IIS level handling for error messages while CustomError is ASP.Net handling for errors in the web application. But would love to know more... – Sunny Mar 19 '10 at 19:51

1 Answer

up vote 29 down vote accepted

Disclaimer: This is from my experience and not proven fact.

Both are used to define error handling for a website, but different software refers to different config elements.

customErrors are a legacy (backwards compatable) element, used by Visual Studio Development Server (aka. VSDS or Cassini).

httpErrors are the new element which is only used by IIS7.

This highlights the possible problem when developing ASP.NET websites while using VSDS instead of the local IIS.

Also, refer to this post by myself about how to handle error messages with IIS7, if you wish to have full control of the error output.

Summary:

  • Developing in VSDS - use customErrors
  • Publishing the site to IIS6 - use customErrors
  • Publishing the site to IIS7 - use httpErrors.

and if you develop with VSDS but publish to IIS7, then i guess u'll need both.

share|improve this answer
6  
customErrors are for asp.net. httpErrors are for IIS7, and so handle content that doesn't go through the .net handler (e.g. .png, .js etc.) If you want error pages for non-.net content types, use IIS error pages (httpErrors for IIS7, the UI for IIS6.) – zcrar70 May 24 '11 at 8:53
3  
I recommend installing and using IIS 7 Express with Visual Studio for debugging purposes. It will use the same config options as regular IIS 7, unlike Cassini. – Sean Nov 5 '11 at 21:37
@Sean - yep, agreed :) IIS7 Express didn't exist at the time of this post, though. :P – Pure.Krome Nov 5 '11 at 22:40
It helped a lot, thanks! – alexanderb Apr 11 '12 at 19:48

Your Answer

 
discard

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

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