I am trying to take the last two decimals off my number that I am pulling from SQL Server.
我试图从我从SQL Server中提取的数字中取出最后两位小数。
It comes out like this:
它是这样的:
4790.2000
I want it to be:
我希望它是:
4790.20
I tried this:
我试过这个:
txtBoxVisaTotalBank.Text = dt.Rows(0).Item("BANK_VI").String.Format("{0:N2}", 10)
But I get this error:
但我得到这个错误:
Public member 'Value' on type 'Decimal' not found.
未找到“十进制”类型的公共成员“值”。
1 个解决方案
#1
txtBoxVisaTotalBank.Text = String.Format("{0:N2}", Decimal.Parse(dt.Rows(0).Item("BANK_VI")))
#1
txtBoxVisaTotalBank.Text = String.Format("{0:N2}", Decimal.Parse(dt.Rows(0).Item("BANK_VI")))