码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:style   blog   color   os   io   数据   ar   div   

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中添加按钮,点击按钮获取某一行的数据

标签:style   blog   color   os   io   数据   ar   div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!