ASP.NET2.0中的GRIDVIEW控制項是一個新增的控制項。在GRIDVIEW裡,行索引被放在了CommandArgument裡面,而不是像DataGrid那樣可以利用this.MyDataGrid.DataKeys[e.Item.ItemIndex].ToString()方便的取出主索引值。
如下是一個GridView 的範例程式碼:
<asp:GridView ID="grdFileList" runat="server"
CssClass="listing highlightTable" GridLines="None" Width="98%" DataKeyNames="fileFullname"
AutoGenerateColumns="False" onrowcommand="grdFileList_RowCommand">
<Columns>
<asp:HyperLinkField DataNavigateUrlFields="fileURLPath"
DataNavigateUrlFormatString="{0}" DataTextField="filename" HeaderText="檔案名稱" />
<asp:BoundField DataField="filesize" HeaderText="檔案大小(KB)" />
<asp:BoundField DataField="createdate" HeaderText = "上傳日期" />
<asp:TemplateField HeaderText="操作">
<ItemTemplate>
<asp:LinkButton ID="lnkDelete" runat="server" CausesValidation="false"
CommandName="DeleteFile" Text="刪除" OnClientClick="return confirm(’確認要刪除嗎?’);"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<asp:ButtonField CommandName="ButtonFile" Text="Button" />
</Columns>
</asp:GridView>
如果使用預設的CommandField,如下代碼:
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
或者ButtonField,代碼如下:
<asp:ButtonField CommandName="ButtonFile" Text="Button" />
則可以在RowCommand中使用如下代碼取出行號:
if (e.CommandName == "ButtonFile")
{
int index = Convert.ToInt32(e.CommandArgument); //取的行索引
}
但是,CommandField / ButtonField 在某些情況下可能不能滿足需要,我們則可以使用模版列來訂製操作按鈕,代碼如下:
<asp:TemplateField HeaderText="操作">
<ItemTemplate>
<asp:LinkButton ID="lnkDelete" runat="server" CausesValidation="false"
CommandName="DeleteFile" Text="刪除" OnClientClick="return confirm(’確認要刪除嗎?’);"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
現在 Convert.ToInt32(e.CommandArgument)中e.CommandArgument轉換為字串為空白,沒有正確擷取到行索引 RowIndex。
針對上述問題,有如下2種解決辦法:
方法一:擷取LinkButton 點擊所在的GridViewRow,然後擷取RowIndex。範例程式碼如下:
if (e.CommandName == "DeleteFile")
{
// catching the row in which the link button is clicked.
GridViewRow gvrow = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
// 擷取到行索引 RowIndex
int index = gvrow.RowIndex;
}
方法二:可以利用RowCreated事件來為模版列中LinkButton寫入CommandArgument事件。
呈現 GridView 控制項之前,必須先為該控制項中的每一行建立一個 GridViewRow 對象。在建立 GridView 控制項中的每一行時,將引發 RowCreated 事件。這使我們可以提供一個這樣的事件處理方法,即每次發生此事件時都執行一個自訂常式(如在行中添加自訂內容,當然也可以添加e.CommandArgument屬性為模版列裡的LinkButton)。
下面的程式碼範例示範如何使用 RowCreated 事件將正在建立的行的索引儲存在該行中所包含的 LinkButton 控制項的 CommandArgument 屬性中。這允許您確定在使用者單擊 LinkButton 控制項按鈕時包含該控制項的行的索引。
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
// Retrieve the LinkButton control from the first column.
LinkButton LinkButton1 = (LinkButton)e.Row.FindControl("LinkButton1");
// Set the LinkButton’s CommandArgument property with the row’s index.
LinkButton1.CommandArgument = e.Row.RowIndex.ToString();
}
}
然後,在RowCommand 事件中,採用與前面一直的方法e.CommandArgument 來擷取RowIndex。範例程式碼如下:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
int rowIndex = int.Parse(e.CommandArgument.ToString());
}
References:
1. Getting Row index in Rowcommand event
http://www.dotnetspider.com/forum/159821-Getting-Row-index-Rowcommand-event.aspx
2. ASP.NET2.0中的GRIDVIEW控制項在使用TemplateField中的LinkButton時如何在RowCommand事件中找到當前行index的方法
http://www.cnblogs.com/xh3/archive/2006/07/01/440469.html