public string GetValue(string value)
{
string va = "";
int a = int.Parse(value);
if (a < 10)
{
va = "0" + a;
}
else
va = a.ToString();
return va;
}