IraMellor.com Blog
RSSFrom Coder to PM or Architect
The Coder Much like everyone else, I started my career as a coder. Rob Conery from Tekpub has a great series on going from coder to developer here. Being the coder has it’s up sides, low … more
Website Move and Software Change
I recently canceled my account for a VPS in lieu of shared hosting. I was dropping a bunch of websites and didn’t really need a VPS anymore. So I figured I hadn’t touched my website in a while so I … more
Avoiding The Database Deployment Nightmare
So, I have written before about how to put your database into version control using database projects in Visual Studio. Even while having the scripts in the solution, there can be times when you … more
How To: Clean Up ASP.NET JavaScript Tags
In April of '08, I wrote a post about cleaning up the ASP.NET head tag using control adapters. I've got some great feedback from it, and I'm glad that I'm not the only one that is horrified when … more
The HttpWebRequest and Using Client Certificates
So you may have found yourself in a similar situation, needing to make a TCP/IP request to a 3rd party API possibly using SSL. Well, that is a quite simple task. It can however, be complicated if … more
Finding Text in SQL Server Stored Procedures
So, I'm sure you have been met with a similar scenario during development. You know the one that you have to rename a column or even drop a column in the database. This can be quite annoying if you … more
Top Posts of 2008
In a look back at what I have put up this year, here are the posts that have been most frequently visited: LINQ Distinct, a DataTable and the IEqualityComparer<T> Using Database … more
SQL Server Side Paging With A Validated Dynamic Order By
So this is what it has come to anymore. Everyone is all about server side paging via SQL Server. As well they should be! It is so much faster and more efficient than having ADO or ADO.NET bring back … more
InfoPanel v1.0 - The site wide messaging system control
If you have read any of my previous posts on site wide user notification patterns and controls, then you may know where this is going. I have compiled a server control to bring this functionality to … more
The private access modifier can do that?
If you look up accessibility levels on the MSDN web site, it will tell you that the accessibility of the private access modifier is limited to the containing type. I ran into an instance that showed … more