Justin Cooney
Web Development Tips and Examples
Category: Programming
-
Recently I was looking into some old VB6 code and for my own reference decided I’d put together a simple summary of how VB6 data types map to .NET data types. This is nothing new, but I thought it would be handy to have a quick comparison chart available. I obtained the information for this chart…
-
Problem: I encountered an interesting problem today. I had a SQL Server table with many records in it that I needed to clean up. Specifically, I needed to find all duplicate records in the table, but keep the first of each of the duplicate records. The table also contained several rows of detail information that…
-
Introduction: Visual Studio allows developers to quickly put together a WebForms page simply using drag and drop options from the Visual Studio editor. Binding form controls is mostly a simple matter of attaching a DataSource and setting your controls to reference the correct field in the DataSource. Binding a GridView control can sometimes get tricky when…