The Gripe “ObjectDataSource ‘odsNameHere’ has no values to insert. Check that the ‘values’ dictionary contains values” This runtime error is quite confusing and obnoxious to […]
Common Base Class Work Around for Page and UserControl
The Gotcha This is a really sore subject for me because I have tried finding a unifying factor for both sets of objects, but the […]
GridView does not have a default Insert Support
Here is a fun fact for you. The ASP.NET GridView control does not have default Insert Support for your objects, even if you are using […]
Entity Framework: Executing SQL Strings
I’ve griped about this before, not sure why everything has to be so complicated with EF at times, but holy hell executing just a simple […]
Entity Framework: Basic CRUD Operations
I like Entity Framework (EF), I think it is a little too rigid sometimes and it would be very nice if there was a very […]
WCF: Why isn’t my object showing up on the client side?
I had a minor head-palm moment a few minutes ago. Problem I declared an object in my WCF service with the correct DataContract and DataMember […]
Could not load file or assembly [AssemblyName] or one of its dependencies
Yellow Screen of Death Error: Could not load file or assembly [Assembly Name Here] or one of its dependencies. The Gripe I hate this error […]
Simple Class Creator
05/25/2014 UPDATE: I moved the code to a different project. I have made a number of changes since 2012. I posted an article on code […]
My.Request Equivalent in C#
The Gotcha When moving VB.Net code to C# code that uses the My namespace such as “My.Request” the equivalent for you to use is “HttpContext.Current.Request”. […]
How to convert a String (Char Array) to List of Int (ASCII Decimal Equivalent)
I think it confuses people that single characters are interchangeable with byte and int, so here I am telling you that they are interchangeable up to an […]