如何使用asp中的列表视图?

时间:2016-02-29 22:05:38

标签: asp.net

我想生成一份学生记录。我使用列表视图显示记录,并添加文本框。我如何获得这些文本框的值?

我的列表视图代码是。

        <LayoutTemplate>

            <table>

                <th> id </th>
                     <th> name </th>
                <th> Value </th>

            <tr>

                

                 </table>
        </>

            </LayoutTemplate>

        <GroupTemplate>
            <asp:PlaceHolder ID="p2" runat="server"></asp:PlaceHolder>
        </GroupTemplate>
        <ItemTemplate>

            <tr>
                <td>
                    <asp:Label ID="Label1" runat="server" Text='<%#Eval("id") %>'></asp:Label></td>
                <td>
                    <asp:Label ID="Label2" runat="server" Text='<%#Eval("name") %>'></asp:Label></td>
                <td>
                    <asp:TextBox id="tx1" runat="server"></asp:TextBox>
                </td>
            </tr>

        </ItemTemplate>
    </asp:ListView>

    <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /><br />
    <br />

我想在点击按钮时插入我的数据。

0 个答案:

没有答案