Nov 162011
 

Given most programming problems there is an almost endless number of ways to implement a solution for even the most simple task. One of those tasks that many take for granted is string manipulation. When talking to a friend recently about this it brought up the question of which method is faster and better performing. So I decided I needed to look at execution speeds and memory usage of three of the main string manipulation implementations; String.Format, StringBuilder and String Concatenation. Continue reading »

Mar 132011
 
Recently I became very aware of the insufficiency of GoDaddy’s web hosting.   So, I went in search of a new place to host my various websites and needed somewhere that met my many needs for ASP.NET 4.0 and WordPress web hosting.Currently I am working on an  ASP.NET 4.0 website that is using Forms Authentication. I had added in email account validation and password reset functionality.  It was working greatly locally and I had thought that it was working fine deployed to my hosting until I actually tested it. Continue reading »
Feb 192011
 

Recently I desired to have support for ASP.NET 4.0 in my web hosting. Since I currently had an unlimited shared Windows hosting plan with GoDaddy I had hoped that the transition would be easy. So, I looked into what they were offered in the way of hosting that supported .NET 4.0. From my search the only offering they had was a Windows Grid hosting plan which was identical to my current plan except it was hosted across multiple servers instead of one shared server. I thought that this would be great, clustered hosting and support for .NET 4.0, unfortunately I was wrong. Continue reading »

Sep 092010
 

The other day while working on a Silverlight application I received the following error:
“Parser internal error: Object writer ‘xClassNotDerivedFromElement’. [Line: N Position: N]
at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator)”
When calling the InitializeComponent() internal method on a custom user control.

So I did what I did best and searched Google for the answer, and while I didn’t end up finding my solution there I did find more about what can cause this error to occur. Continue reading »

Aug 192010
 

Recently, I was working on a project when I came into a problem that I hadn’t dealt with before.  You see I was working with a rather large table (200+ fields) and a corresponding archive table for it.  The goal was to be able to populate a form with fields from either of the object types as essentially they were the same record type. Continue reading »