MVC3 Deployment Checklist

by Matt 5. December 2011 11:14
This is more for my reference than anything, but every one in a while I deploy a new MVC 3.0 app that doesn't have the framework installed on the s... [More]
Tags: ,
Categories: .NET | MVC

Convert String To Proper Case

by Matt 12. October 2011 15:28
It's a piece of code I wish I didn't use nearly as often I did, but because people like to do data entry with CAPSLOCK on, I feel the need to convert it to Proper Case. [More]
Tags: , ,
Categories: .NET | C# | Strings

The type or namespace name 'Script' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

by Matt 28. September 2011 10:12
I wasted a few minutes of my life today trying to run some code I downloaded online that gave me this error. [More]
Categories: .NET

CRM 4.0 opportunityclose Object

by Matt 5. February 2011 13:30
Programmatically closing an Opportunity object is pretty easy in CRM 4.0, although it took me some time to figure out how to do it correctly. [More]
Tags: , , ,
Categories: .NET | C# | CRM

CRM Error 0x8004416c - PluginAssemblyMustHavePublicKeyToken

by Matt 21. January 2011 17:43
So you've created added a brand new Project to your Dynamics CRM Plugin Solution. You write your code, compile it, and use the plugin registration tool to register the assembly and create your desired steps. [More]
Categories: .NET | C# | CRM

Reflecting on Reflection

by Matt 13. August 2010 16:24
It’s been a while since I’ve had to use reflection for anything, but it’s a very useful concept to understand as it can save you many lines of code and provide a smart solution when it is applicable. After playing around with it for a little while, I finally did solve my reflection problem; Apparently it works best when you stand in front of the mirror. [More]
Categories: .NET | C#