程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法

Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法

編輯:C#入門知識

Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法。本站提示廣大學習愛好者:(Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法正文


本文以一個asp.net法式為例講述了Repeater中添加按鈕完成點擊按鈕獲得某一行數據的辦法,分享給年夜家供年夜家參考自創之用。詳細步調以下:

1.添加編纂按鈕和刪除按鈕

詳細代碼以下:

<asp:Repeater ID="Repeater1" runat="server" 
  onitemcommand="Repeater1_ItemCommand">
  <ItemTemplate>
 <table width="100%" border="1" cellpadding="0" cellspacing="0">
   <tr>
               <td  class="style2">
   <%#Eval("E_Name")%>
 </td>
 <td>
   <asp:ImageButton ID="ImageButton1" runat="server" CommandName="JustEdit" ImageUrl="~/icon./edit.gif" CommandArgument=<%#Eval("E_ID")%>/>
   <asp:ImageButton ID="btn_del" runat="server" CommandName="JustDelete" ImageUrl="~/icon./del.gif" OnClientClick="return confirm('確認刪除?')"
     CommandArgument=<%#Eval("E_Id")%> />
 </td>
   </tr>
 </table>
  </ItemTemplate>
</Repeater>

2.選中Repeater控件,添加事宜函數onitemcommand

以下圖所示:

3.添加函數內容

詳細功效代碼以下:

protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
    Int32 eid = Convert.ToInt32(e.CommandArgument.ToString());//獲得E_ID的值
    if (e.CommandName == "JustDelete")
    {
      
      BLL_Emp bll = new BLL_Emp();
      bll.Delete(eid);
      Server.Transfer("~/emp/Employee.aspx");//刷新
    }
    else if (e.CommandName == "JustEdit")
    {
      Response.Redirect("~/emp/UpdateEmployee.aspx?E_Id=" + eid.ToString() + "&C_Id=" + Request.QueryString["C_Id"].ToString());
    }
}

願望本文所述示例對年夜家的asp.net法式設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved