首页 > 其他 > 详细

Repeater中添加按钮,点击按钮获取某一行的数据

时间:2014-08-15 17:48:09      阅读:458      评论:0      收藏:0      [点我收藏+]

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

bubuko.com,布布扣

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());
        }
    }

 

Repeater中添加按钮,点击按钮获取某一行的数据,布布扣,bubuko.com

Repeater中添加按钮,点击按钮获取某一行的数据

原文:http://www.cnblogs.com/Vennet/p/3915312.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!