I had a very interesting experience recently trying to figure out how to select a random date between a date range using tSQL, it was […]
Extension Methods: Straight to the Point!
I kept looking at many articles on extension methods and for some reason I couldn’t get mine to work. It then dawned on me that […]
C# String PadLeft() and PadRight()
This has been an irritating method to use especially when you don’t use it too often. Here are some tips about using PadLeft() and PadRight(). […]
Remoting Servers 101
Before I jump into this, I just want to explain that Remoting is an old .Net v1.1 technology and it is no longer supported. However […]
Adventures In Web Service and Remoting Server Craziness
I don’t think there are that many people out there that still have to deal with more than one .Net Framework, but I have to […]
Remoting Server Troubleshooting
If you are having trouble with getting remoting to function properly and you know you have everything configured properly then it is more than likely […]
SQL Server: Tips on Declaring a Decimal Data Type
One of my pet peeves about SQL Server is the decimal data type. Declaring it once in a table where you don’t have to do […]
Blog Title
I changed the title of my blog because I am going to encompass all topics that have baffled me or confused me. I haven’t gotten […]
HTTP Error 500.19 – Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Error Code: 0x8007000d
This is probably one of the more annoying errors I have ever encountered with IIS7. All the information I was finding for it online was […]
How to Iterate Through all Enums from a Class in C#
This took me a good while to figure out. This is specifically for looping through multiple enumerations declared inside of a class. This code would […]