I have just taken over some code and I see this used a lot. It seems to take the integer and create a string looking like "01", "02" etc.
What I am not sure of is the convention used here. Why is the format {0:00} and not {00}?
string.Format("{0:00}", int.Parse(testVal) + 1);