0

我有这个 gridview 启用了页脚行来插入新行。但是我不知道如何将文本框与 sqldatasource 中的插入参数绑定。请帮忙?

            <asp:TemplateField HeaderText="Region Name" SortExpression="regionName">
                <FooterTemplate>
                      <asp:TextBox ID="tbInsert" runat="server" Text="" ></asp:TextBox>
                </FooterTemplate>
            </asp:TemplateField>
4

1 回答 1

1

明白了,在后面的代码中做到了:

        if (e.CommandName == "Insert")
        {
            TextBox tbInsert = grv_regionManagement.FooterRow.FindControl("tbInsert") as TextBox;
            sds_regions.InsertParameters["regionName"].DefaultValue = tbInsert.Text;
            sds_regions.Insert();
        }
于 2012-05-14T19:41:29.410 回答