熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

DataList獲取當前行id

2022-06-13   來源: .NET編程 

  ()DataList中添加按鈕並為其添加 CommandArgument屬性與CommandName屬性

  <asp:Button ID=Button runat=server Text=Button CommandArgument=<%# Eval(ID) %> CommandName=del/>

  ()DataList有個事件OnItemCommand事件事件在單擊DataList控件中的任一按鈕時引發這樣在單擊當前行的按鈕時就會觸發事件並獲得當前行的ID進行刪除操作啦

  protected void DataList_ItemCommand(object source DataListCommandEventArgs e)

  {

  if (eCommandName == del)

  {

  string strID = eCommandArgumentToString();

  ResponseWrite(strID);

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/13172.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.