设置GridView 空值时,显示的默认值
有代码:
<asp:GridView ID="GridView1" runat="server" OnPageIndexChanging="GridView1_PageIndexChanging"
AutoGenerateColumns="False">
<Columns>
<asp:BoundField DataField="CountFire" HeaderText="火灾数量"
SortExpression="CountFire" NullDisplayText="0" />
<asp:BoundField DataField="ReadCare" HeaderText="车祸数量"
SortExpression="ReadFire" NullDisplayText="0" />
<asp:BoundField DataField="other" HeaderText="其他"
SortExpression="falseFire" NullDisplayText="0" />
</Columns>
当 Gridview 显示 为空值 时。 为什么不显示 默认值 “0” 啊?
------解决方案--------------------帮你顶一下
------解决方案--------------------
返回的集合中没有数据,gridview根本就显示不出来,又如何变0,你做个判断,如果查出来的集合为空,那么手动添加一条记录进去,再绑定到gridview上,你的东西就实现了。