ASP.NET2.0中的GRIDVIEW控制項在使用TemplateField中的LinkButton時如何在RowCommand事件中找到當前行index的方法

來源:互聯網
上載者:User
ASP.NET2.0中的GRIDVIEW控制項真是非常奇怪,不知道MS是怎麼考慮的,在GRIDVIEW裡,行索引被放在了CommandArgument裡面,而不是像DataGrid那樣可以利用this.MyDataGrid.DataKeys[e.Item.ItemIndex].ToString()方便的取出主索引值,
同時我們注意到,如果使用預設的CommandField,
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
 則可以在RowCommand中使用如下代碼取出行號:
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
//編輯按扭
if (e.CommandName == "Edit")
{
    //設定編輯行高亮顯示
    this.GridView1.EditRowStyle.BackColor = Color.FromName("#F7CE90");
//string index= this.GridView1.DataKeys[Convert.ToInt32(e.CommandArgument)].Value.ToString();
    int index = Convert.ToInt32(e.CommandArgument);
    GridViewRow row = GridView1.Rows[index];
    string xh3 = row.Cells[3].Text;
}
}

 

但問題是,CommandField的可操控性是很底的,我們一般習慣於使用模版列來訂製操作按鈕,如下:
<asp:TemplateField HeaderText="操作" ShowHeader="False">
<EditItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="True" CommandName="Update" Text="更新"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="Cancel" Text="取消"></asp:LinkButton>
</EditItemTemplate>
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Edit" Text="編輯" ></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" CausesValidation="False" CommandName="Select" Text="選擇"></asp:LinkButton>
<asp:LinkButton ID="LinkButton3" runat="server" CausesValidation="False" CommandName="Delete" Text="刪除" ></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>

 隨之而來,問題出現了,運行報錯:輸入字串的格式不正確, Convert.ToInt32(e.CommandArgument)中e.CommandArgument轉換為字串為空白。當我們把CommandField轉換為模版列時,預設的CommandArgument屬性丟失了!!!
思考了兩天,翻閱了網上的資料,最後在MSDN文檔中發現,呈現 GridView 控制項之前,必須先為該控制項中的每一行建立一個 GridViewRow 對象。在建立 GridView 控制項中的每一行時,將引發 RowCreated 事件。這使我們可以提供一個這樣的事件處理方法,即每次發生此事件時都執行一個自訂常式(如在行中添加自訂內容,當然也可以添加e.CommandArgument屬性為模版列裡的LinkButton)。
GridViewRowEventArgs 對象將被傳給事件處理方法,隨之我們可以訪問正在建立的行的屬性。若要訪問行中的特定儲存格,可以使用 GridViewRowEventArgs 對象的 Cells 屬性。使用 RowType 屬性可確定正在建立的是哪一種行類型(標題列、資料行等等)。
好了,原來我們可以利用RowCreated事件來為模版列中LinkButton寫入CommandArgument事件。
下面的程式碼範例示範如何使用 RowCreated 事件將正在建立的行的索引儲存在該行中所包含的 LinkButton 控制項的 CommandArgument 屬性中。這允許您確定在使用者單擊 LinkButton 控制項按鈕時包含該控制項的行的索引。

/// <summary>
/// 為模版列LinkButton寫入CommandArgument事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>

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();
}

}

好了,其餘的代碼不變,在GridView1_RowCommand中的代碼不變.

相關文章

聯繫我們

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