问题描述
Ife.Row.RowType=DataControlRowType.DataRowThen'addtheUnitPriceandQuantityTotaltotherunningtotalvariablesfare_fee_Sum+=Convert.ToInt32(DataBinder.Eval(e.Row.DataItem,_"fare_fee"))ElseIfe.Row.RowType=DataControlRowType.FooterThene.Row.Cells(8).Text=fare_fee_Sum.ToString("C")endif最后出来的值为什么都是保留整数阿。。我想保留小数(羊20.01)那个钱的符号不好打。。。。谢谢了。。。
解决方案
解决方案二:
fare_fee_Sum.ToString("N2")如2.57148N1代表一位小数2.5N3代表五位2.571
解决方案三:
但是我想要那个人民币符号阿。。。
解决方案四:
e.Row.Cells(8).Text=string.Format("羊{0:N2}",fare_fee_Sum)
时间: 2025-01-30 22:51:30