Web developers. You suck.
In order to aid in development of my own websites, I enabled JavaScript debugging in Internet Explorer a few weeks back. To my horror, I have quickly... more »
2 commentsSave Tags: ajax, javascript
enum to friendly string extension method
We use enums quite extensively in our application as they are a great for representing integral values in a strongly typed way using symbolic names.... more »
0 commentsSave Tags: .net
the LinqToSQL is a lie
LinqToSql is amazing! I've been working with it for the past week and loving every moment. However i've noticed somethig weird, it lies to me about... more »
0 commentsSave Tags: .net, database
A C# Operator I would like to see.
You could argue there are too many operators in C# as it is; however, I feel having an acute knowledge of the available operators is like knowing CTRL... more »
0 commentsSave Tags: .net
Implementing Generic Caching
I develop for a large, high-availability website, with hundreds of thousands of daily users. As such, we need to cache a lot of data in our web-server... more »
0 commentsSave Tags: .net
Enum TryParse Extension Method
TryParse method is very helpful if you need to convert string representation of a value to a value itself. TryParse is better than Parse method... more »
0 commentsSave Tags: .net
To Extension Method
Many times you find yourself having to convert the type of an object to another. The ToString() method is probably one of the most useful methods,... more »
0 commentsSave Tags: .net
Select Text or Value From DropDownList Extension Method
Here is a very usefull extension method that allows you to select an item from a DropDownList using the text or value of the item without needing to... more »
0 commentsSave Tags: .net