我正在寻找一种方法将项目编辑行内GridView UI传播到项目插入。
我在页脚中有项目插入表单(行),但只有在GridView不为空时它才可见。因此,当它是空的时,我不能使用它,所以有一个看起来很难看的单独形式。
我可以一直使用外部表格插入,但我喜欢行内插入看起来很方便。
我可以一直显示页脚,还是模仿类似的行内样式?
答案 0 :(得分:1)
你有2种方法可以做到:
1 - 通过模拟<EmptyDataTemplate>
<asp:GridView ID="GridView1" runat="server">
<EmptyDataTemplate>
<tr>
<td>
First Cell
</td>
<td>
Second Cell
</td>
<tb>
Third Cell
</tb>
</tr>
</EmptyDataTemplate>
</asp:GridView>
2 - 创建空DataSet
并将其绑定到GirdView
。
我更喜欢第一种方式,因为Binding empty DataSet
有一些问题。