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中的代碼不變.