ASP.NET 2.0 GridView的RowCommand事件中取得行索

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.