repeater中的删除按钮实现

protected void BtnDel_Click(object sender, CommandEventArgs e)
    {
     int ID = Convert.ToInt32(e.CommandName);
     string delSql = "delete from xy_action where actionid=" + ID;
     Response.Write(ID);
}
<asp:LinkButton id="BtnDel" runat="server" OnCommand="BtnDel_Click" CommandName='<%#Eval("DataItem.huitie_id") %>'>删除asp:LinkButton>td>

转载于:https://www.cnblogs.com/ccsbb/archive/2010/05/28/1746129.html

你可能感兴趣的:(repeater中的删除按钮实现)