首页 > 代码库 > GridView移除(隐藏)行
GridView移除(隐藏)行
前台相关代码:
<asp:TemplateField HeaderText="移除"> <ItemStyle HorizontalAlign="Center" /> <ItemTemplate> <asp:LinkButton ID="LinkButtonRemove" runat="server" CommandName="Remove" CommandArgument='<%# Eval("CpId")%>' Text="移除" /> <asp:HiddenField ID="HiddenField1" runat="server" Value=http://www.mamicode.com/''/>>为GridView添加OnRowCommand事件,事件名称为gridViewCPImportPercent_RowCommand,后台代码:
protected void gridViewCPImportPercent_RowCommand(object sender, GridViewCommandEventArgs e) { if (string.IsNullOrEmpty(e.CommandName) || e.CommandArgument == null) return; if (e.CommandName == "Remove") { for (int i = 0; i < gridViewCPImportPercent.Rows.Count; i++) { if ((gridViewCPImportPercent.Rows[i].FindControl("HiddenField1") as HiddenField).Value =http://www.mamicode.com/= e.CommandArgument.ToString())>GridView移除(隐藏)行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。