Browse by Tags

All Tags » Tips-n-Tricks (RSS)
Leveraging Virtual Machines is a great way to develop against SharePoint. I was trying to update Visual Studio 2005 on a dev VM to SP1 and kept receiving "Error 1718. File FileName was rejected by digital signature policy." The cause of this...
Posted by dbottjer | with no comments
Filed under: ,
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...
Posted by dbottjer | with no comments
DoNotExposeGenericLists is a Code Analysis rule exposed within Visual Studio when List<T> is publically exposed. For example, List<T> may be exposed through properties, methods, parameters, etc. Why does DoNotExposeGenericLists recommend that...
Posted by dbottjer | with no comments
Filed under: , ,
< 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...
Posted by dbottjer | 1 comment(s)
Filed under: ,