show/hide this revision's text 2 added 25 characters in body

Perhaps you should be

Testing strings for Null or Empty is best done using:

if (string.IsNullOrEmpty(testString))
{
}
show/hide this revision's text 1

Perhaps you should be using:

if (string.IsNullOrEmpty(testString))
{
}