Tag Archives: asp mvc

Asp.Net MVC3 Razor and RESX Localisations/Localizations

I was just applying for a small two week contract that was based on Localisation. This is the work I did to give myself a quick refresh. It reminded me on how well Asp.Net MVC3 works with RESX localisations. As … Continue reading

Posted in ASP.Net | Tagged , , | Leave a comment

Using Common.Logging with Glimpse and ASP.Net MVC

Glimpse is an amazing tool (that comes available with Nuget in Visual Studio 2010 [included in the Tools Update]) that can hook into the System.Diagnostic.Trace (ewww) to display error messages on your client side browser. Like so: I don’t want … Continue reading

Posted in ASP.Net | Tagged , , , | Leave a comment

Converting MVC 2 RC to MVC 2 RTM

Ok, this is more of a hack than a true conversion, but I haven’t noticed the difference… yet. Remember to back up what you’re not willing to lose! Remove your MVC project from your solution. Don’t delete, just remove. Then … Continue reading

Posted in ASP.Net | Tagged , | Leave a comment

Asp.Net MVC 2 Action Results

A handy list of ActionResult’s that I found on StackOverflow thanks to Chris.S and his reference to the MSDN doc. ContentResult Writes a string value directly into the HTTP response. EmptyResult Does not write to the HTTP response. FileContentResult Takes … Continue reading

Posted in Uncategorized | Tagged | Leave a comment