首页 > 代码库 > Repeater中添加按钮,点击按钮获取某一行的数据
Repeater中添加按钮,点击按钮获取某一行的数据
1.添加编辑按钮和删除按钮
<asp:Repeater ID="Repeater1" runat="server" onitemcommand="Repeater1_ItemCommand"> <ItemTemplate> <table width="100%" border="1" cellpadding="0" cellspacing="0"> <tr> <td style="width: 15%;" class="style2"> <%#Eval("E_Name")%> </td> <td> <asp:ImageButton ID="ImageButton1" runat="server" CommandName="JustEdit" ImageUrl="~/icon./edit.gif"/> <asp:ImageButton ID="btn_del" runat="server" CommandName="JustDelete" ImageUrl="~/icon./del.gif" OnClientClick="return confirm(‘确认删除?‘)" /> </td> </tr> </table> </ItemTemplate>
2.选中Repeater控件,添加事件函数onitemcommand
3.添加函数内容
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e) { DataRowView rowView = (DataRowView)e.Item.DataItem; string str = rowView.Row["E_Id"].ToString();//得到字段C_Id的值 if (e.CommandName == "JustDelete") { BLL_Emp bll = new BLL_Emp(); bll.Delete(str); Server.Transfer("~/emp/Employee.aspx");//刷新 } else if (e.CommandName == "JustEdit") { Response.Redirect("~/emp/UpdateEmployee.aspx?E_Id=" + str.ToString() + "&C_Id=" + Request.QueryString["C_Id"].ToString()); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。