我要判断jydbh
当jydbh 不为空的时候 +1
如果为空 就是+"01" 我下面的语句有错?

string jydbh = Request.Params["jydbh"].ToString();//jydbh 值为 100201010030001
if (!string.IsNullOrEmpty(jydbh))
{
result = Convert.ToString(Convert.ToInt64(jydbh) + 1);
}
else
{
result = jydbh + "01";
}