1. 程式人生 > >gridview使用TemplateField中的LinkButton時如何在RowCommand事件中找到當前行index的方法

gridview使用TemplateField中的LinkButton時如何在RowCommand事件中找到當前行index的方法

ASP.NET2.0中的GRIDVIEW控制元件在使用TemplateField中的LinkButton時如何在RowCommand事件中找到當前行index的方法
  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中的程式碼不變.

比如再一個單元格中要加入兩個按鈕:

.aspx頁面:

 <asp:TemplateField HeaderText="導航序號" ShowHeader="False">
                <ItemTemplate>
                    <asp:Label ID="Label3" runat="server" Text='<%# Eval("Modsort") %>'></asp:Label>
                    <asp:ImageButton ID="ImageButton1" runat="server"
                        ImageUrl="/Manager/enterpriseManager/Mod/Images/up.png" Height="18px"
                        Width="17px" CausesValidation="false" CommandName="up" Text="up" />&nbsp;
                    <asp:ImageButton ID="ImageButton2" runat="server"
                        ImageUrl="/Manager/enterpriseManager/Mod/Images/down.png" Height="18px"
                        Width="17px" CausesValidation="false" CommandName="down" Text="down" />
                </ItemTemplate>
                <HeaderStyle BackColor="#C00000" />
                <ItemStyle HorizontalAlign="Center" />
            </asp:TemplateField>

cs檔案:

在RowCreated事件裡面(注意這裡很重要)

   protected void GridView_RowCreated(object sender, GridViewRowEventArgs e)
   {
       if (e.Row.RowType == DataControlRowType.DataRow)
       {
           ImageButton ImageButton1 = e.Row.FindControl("ImageButton1") as ImageButton;
           ImageButton1.CommandArgument = e.Row.RowIndex.ToString();
           ImageButton ImageButton2 = e.Row.FindControl("ImageButton2") as ImageButton;
           ImageButton2.CommandArgument = e.Row.RowIndex.ToString();
       }
   }

在RowCommand事件裡面:

  protected void mod_RowCommand(object sender, GridViewCommandEventArgs e)
    {

 if (e.CommandName == "up")
        {
            ClientScript.RegisterStartupScript(GetType(), "", "<script>alert('我要UP!');</script>");
        }
        if(e.CommandName=="down")
        {
            ClientScript.RegisterStartupScript(GetType(), "", "<script>alert('我要DOWN!');</script>");
        }

}