Over the last 5+ months myself (as well as thirteen other Magenic consultants) have been nose-to-the-grind-stone on a very high profile project. Due to the NDA at the time we were not allowed to state …
MVC HtmlHelper.ActionLink with Css Class
When using the MVC helpers (namely the HtmlHelper class in this example) you have to be aware of what you’re typing into the htmlAttributes object (which is an overload of the Action method on that …
Continue Reading about MVC HtmlHelper.ActionLink with Css Class →
Castle Windsor 2.0 RTM
2.0 RELEASED! Wow… I’ve been using castle for, I’m not sure, maybe 4 years and its finally released version 2.0. I’ve been running off the trunk for _ages_ too. I’m happy to see that this new …
ASPNET MVC IIS7 and Bad Request
While working on an app recently I ran into the issue of needing to handle httpErrors at runtime in a dynamic fashion. I did this with some custom controller execution and routing. If a user were to …
NCover Hangs on Configuring Profiler…
Our main build broke today. We have about 53 projects in our solution (yes, its huge) and all of a sudden … pow … NAnt started timing out. Upon further investigation I noticed that the build was …
Continue Reading about NCover Hangs on Configuring Profiler… →
Finding App_Data Programmatically
While writing some code I needed to be able to access the the App_Data directory in my ASPNET MVC app. Doing this usually involves a Server.MapPath, but this wont work for my unit test. Here’s how …