Repeater控件中添加删除修改按钮

1:   <asp:LinkButton ID="LinkButton1" runat="server" CommandArgument='<%#Eval("id") %>'  OnClientClick="return confirm('是否删除')"  OnClick="Del" >删除</asp:LinkButton>
//修改同理
2:在后台中添加删除方法
 public void Del(object sender,EventArgs e)
        {
            int id = Convert.ToInt32((sender as LinkButton).CommandArgument);
            //把sender由object转换成LinkButton后获取CommandArgument的值
            new xh.shop.DAL.link().Delete(id);
            Repeater1.DataSource = new xh.shop.DAL.link().GetList("");
            Repeater1.DataBind();
        }
3  后台修改方法
protected void mod(object sender, EventArgs e)
        {
            int id = Convert.ToInt32((sender as Button).CommandArgument);
            string canmae = ((sender as Button).NamingContainer.FindControl("txtcaname") as TextBox).Text;
//找到文本框的方法
           
            xh.shop.Model.categroy model = new xh.shop.DAL.categroy().GetModel(id);
            if (model!=null)
            {
                model.caname = canmae;
                new xh.shop.DAL.categroy().Update(model);
                Response.Redirect(Request.Url.ToString());
            }
        }

转载自:http://www.cnblogs.com/luqingsong/archive/2011/01/03/1924995.html

转载于:https://www.cnblogs.com/New-world/archive/2012/08/18/2645688.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值