public static string Decimal2Str(decimal value)
{
if (value == 0)
{ return string.Empty;
}
else
{ return value.ToString("N");