asp.net gridview的Rowcommand命令中擷取行索引的方法總結

來源:互聯網
上載者:User

一、通過命令源擷取當前行索引。

方法比較多, GridView 的 Command 事件中無法象 DataGrid 那樣直接擷取行,

法1,
GridViewRow drv = ((GridViewRow)(((Button)(e.CommandSource)).Parent.Parent));//CommandSource 引起事件的命令源,(疑問,根據MSDN說的是GridView,如果這樣的話這樣操作是錯誤的,但我得到的確實正確的,那說明得到的是BUtton控制項,等待以後查證).
drv.RowIndex

二、通過在RowDataBound事件中把行索引綁定到控制項的CommandArgument

由於事件參數 GridViewCommandEventArgs 並不公開Row屬性指示當前行,(DataGridCommandEventArgs 公開 Item 屬性以擷取當然 DataGridItem,不知 ASP.NET Team 是如何考慮這一設計的),因此需要一點“技巧”來擷取此屬性。

其實這是一個早就已知的問題,鑒於CSDN裡面每每有人疑惑,這裡稍微整理下,便於參閱:

複製代碼 代碼如下:protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int rowIndex = -1;
GridViewRow row = null;
switch (e.CommandName) ...{
case "Command1": // 模板列
// 對於模板列內的按鈕,我們需要顯示綁定行索引到按鈕的 CommandArgument 屬性
// 以擷取觸發事件的行資訊
rowIndex = Convert.ToInt32(e.CommandArgument);
row = GridView1.Rows[rowIndex];
DisplayInfo(row, e.CommandName);
// your codes
//
break;
case "Command2": // 模板列
// 同樣處於模板列中,但不採用 Command1 方式,而是通過 NamingContrainer 屬性
// 直接擷取當前的 GridViewRow
Control cmdControl = e.CommandSource as Control; // 表示觸發事件的 IButtonControl,保持統一性並便於後續操作,我們這裡直接轉化為控制項基類 Control
row = cmdControl.NamingContainer as GridViewRow;
DisplayInfo(row, e.CommandName);
// your codes
//
break;
case "Command3": // 繫結資料行
// 對於 ButtonField 列,資料來源控制項內部自動以適當的項索引值填充 CommandArgument 屬性。
// 而無需我們顯示綁定其 CommandArgument 屬性
// 注意,我們這裡無法採用 Command2 的方式,對於 BUttonField 觸發的事件,
// GridViewCommandEventArgs.CommandSource 表示的包含此按鈕的 GridView
rowIndex = Convert.ToInt32(e.CommandArgument);
row = GridView1.Rows[rowIndex];
DisplayInfo(row, e.CommandName);
// your codes
//
break;
}
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.