'System.Web.UI.WebControls.ListItemCollection'中不允许使用文字内容('DataFormatString =“{0:D6}”')

时间:2014-08-14 07:21:10

标签: c# asp.net

我想在网格中显示十进制两位值,并使用DataFormatString。 这是我的asp.net代码

  <asp:BoundField HeaderText="Value" DataField="Value" SortExpression="Value" DataFormatString"{0:F2}" />

但是它给出了错误

'System.Web.UI.WebControls.DataControlFieldCollection'中不允许使用文字内容('')。

2 个答案:

答案 0 :(得分:1)

我错过了=,因此请更改

DataFormatString"{0:F2}"

DataFormatString="{0:F2}"

答案 1 :(得分:1)

因为你忘了放=

DataFormatString="{0:F2}"