Tip: Error Handling in .NET

by Martin 20. November 2009 07:29
In .NET development the common approach to exception handling is to make use of Try...Catch...Finally. try { // some code } catch (NullReferenceException ex) { // handle the exception } Sometimes you don't need to handle the exception ... [More]

ASP.NET MVC Setup

by Martin 19. November 2009 03:29
First things fist... make sure you have the pre-requisites.  Start by removing any previous or beta versions of ASP.NET MVC.  I start with the ASP.NET MVC Downloads page. Intall the ASP.NET MVC Framework 1.0 - the one you really need ... [More]

Virtual path maps to another application

by Martin 13. November 2009 01:22
I use Web Deployment Projects to build an ASP.NET web site.   When I built the web project by itself I got a successful build, but the Web Deployment Project received the following error... The virtual path '/UserControls/Common/ModalProgress.... [More]