如何组合GridView和项目插入功能?

时间:2012-05-07 19:01:25

标签: asp.net .net gridview

我正在寻找一种方法将项目编辑行内GridView UI传播到项目插入。

我在页脚中有项目插入表单(行),但只有在GridView不为空时它才可见。因此,当它是空的时,我不能使用它,所以有一个看起来很难看的单独形式。

我可以一直使用外部表格插入,但我喜欢行内插入看起来很方便。

我可以一直显示页脚,还是模仿类似的行内样式?

1 个答案:

答案 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有一些问题。