I was trying to get SubSonic to run on a Free Hosting Environment (on GoDaddy) but unfortunately I kept getting a SecurityException when the code would attempt to save an entity. The code looked …
Returning XML Data as a Record Sets through the CLR in SQL Server 2005
The Problem I needed to write something like this ... SELECT * FROM CustomerTest WHERE Customer_Id = 1; The data returned needed to return the row as well as the data inside of the XML Column …
Continue Reading about Returning XML Data as a Record Sets through the CLR in SQL Server 2005 →
ASP.NET AJAX Always Visible Control Frustrations
Unfortunately I don't have time to go through and figure out why the Always Visible control wont work with a user control. Although I assume it has something to do with the HTML DOM. Some relationship …
Continue Reading about ASP.NET AJAX Always Visible Control Frustrations →
ASP.NET Projects Take Forever To Load in Internet Explorer
I recently had a problem that plagued me the last couple of weeks. Problem: When I pressed F5 or CTRL + F5 or even "View in Browser" from Visual Studio (in an ASP.NET project) Internet Explorer would …
Continue Reading about ASP.NET Projects Take Forever To Load in Internet Explorer →
HTML 5 vs HTML 4
I was perusing the HTML 5 Spec and I ran across the HTML 5 differences from HTML 4. There are a couple things that caught my eye immediately: new input types, datagrid, datalist, and also how the …
.NET Scaffolding
Jeremy D. Miller has a great post on keeping source code where it belongs. The thought process behind this is that code should be where YOU would assume it would be. If its data access code, it should …