I'm sure, like me, you've seen plenty of production web.config files with debug=true set. Most senior ASP.NET developers will recognize that debug should be set to false for the production build. However, this small detail is often over looked...
< xhtmlConformance mode = " " /> is new to ASP.NET 2.0 and can be added to the Web.Config to specify the XHTML rendering mode for an ASP.NET Application. Mode can be set to Legacy, Transitional, or Strict. Using the Legacy mode is not...