February 2010
ASP.NET WebForms' DataSource controls lets you parameterize your query and have those parameters
automatically fetched from one of a few standard sources. Like from the querystring, a form
parameter, a cookie etc.
This article shows you how to create your own custom parameters from other sources.
Read more...
September 2009
How to use Azure table storage without relying on the StorageClient sample project.
The article adresses these questions:
- What does this sample project give us?
- How does it work?
- Can we do these things ourselves?
Read more...
August 2009
Ok, I know this isn't exactly breaking news. Twitter has been out there for a couple of years, but
still many people don't know what Twitter is.
I think Twitter with its simplicity has several interresting aspects, and they are different for all
of us.
Read more...
August 2009
How does SharedKey and SharedKeyLite authentication work, and how can I create the tokens myself.
Read more...
August 2009
Most articles and samples on using Azure table storage assume that it will be used from an Azure web or worker role.
I wanted to see if the Windows Azure Table Store could be used with applications running elsewhere,
like on your computer.
Read more...
July 2009
RecentIy I needed to find a specific TreeNode in a TreeView control.
I expected that would be easy with LINQ, but quickly realized that there is no method in the .NET
framework that will let me traverse all nodes of a hierarchy.
I decided to create one myself.
Read more...
July 2009
I found a question titled: Why is code quality not popular? on Stackoverflow yesterday. Several
people had listed reasons for not doing unit testing.
There were a lot of misconceptions there. Here are the main reasons mentioned against unit testing
(the myths) with my responses.
Read more...
June 2009
In a previous article articles about parsing files, I took a very simplistic approach to reading
a delimited file. I used string.Split, which doesn't handle the use of quotes and usage of the
delimiter character inside quotes.
Well, it turns out theres more to reading a delimited file than splitting at the delimiter...
Read more...
March 2009
In a previous article, I described how to use LINQ when parsing a textfile.
Following that train of thoughts further, I found a more elegant way of splitting the lines from the
file into columns.
Read more...
March 2009
Reading and parsing files is really no difficult task with the .NET framework. This article shows
how you can use LINQ to read files.
Read more...