前台
复制代码 代码如下:
CommandName="del" CommandArgument='<%# eval("ID") %>'>删 除
后台:
复制代码 代码如下:
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
if (e.CommandName == "del")
{
//删除的方法
}
}



