我想在网格中显示十进制两位值,并使用DataFormatString。 这是我的asp.net代码
<asp:BoundField HeaderText="Value" DataField="Value" SortExpression="Value" DataFormatString"{0:F2}" />
但是它给出了错误
'System.Web.UI.WebControls.DataControlFieldCollection'中不允许使用文字内容('')。
答案 0 :(得分:1)
我错过了=
,因此请更改
DataFormatString"{0:F2}"
到
DataFormatString="{0:F2}"
答案 1 :(得分:1)
因为你忘了放=
:
DataFormatString="{0:F2}"