ASP GridView在按钮单击时获取行值

时间:2012-05-04 17:40:06

标签: c# asp.net gridview

我在做什么 - 在图片按钮上重置用户密码。

到目前为止已完成 - 添加了GridViewCommandEventHandler - 它正确触发。使用MSDN中的代码。我为我的e.CommandArgument得到一个空字符串(“”),它在运行时抛出一个错误(无法解析“”到int)。

我可以在调试器中看到在e的其他地方存储了一个'rowIndex'属性(正确用于我的点击),我可以访问它吗?我认为MSDN的代码会起作用 - 是否还有其他一些方法可以解决这个错误或者其他方法来修复它?感谢。

void resetpassword(Object sender, GridViewCommandEventArgs e)
{
    // If multiple ButtonField columns are used, use the
    // CommandName property to determine which button was clicked.
    if (e.CommandName == "resetpass")
    {
        // Convert the row index stored in the CommandArgument
        // property to an Integer.
        int index = Convert.ToInt32(e.CommandArgument);

        // Retrieve the row that contains the button clicked
        // by the user from the Rows collection. Use the
        // CommandSource property to access the GridView control.
        GridView GridView1 = (GridView)e.CommandSource;
        GridViewRow row = GridView1.Rows[index];

        String usrname = row.FindControl("username").ToString();

aspx页面代码:

<asp:TemplateField HeaderText="Reset Password">
                <ItemTemplate>
                    <asp:ImageButton ID="ibtnReset" runat="server" CausesValidation="false" 
                        CommandName="resetpass" ImageUrl="~/Images/glyphicons_044_keys.png" Text="Button" />
                </ItemTemplate>
                <HeaderStyle Width="70px" />
                <ItemStyle HorizontalAlign="Center" />
            </asp:TemplateField>

事件添加代码:

 protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
    {
        GridView1.RowCommand += new GridViewCommandEventHandler(this.resetpassword);
    }

2 个答案:

答案 0 :(得分:4)

我认为你遗失了CommandArgument='<%# Container.DataItemIndex %>'

代码。

<asp:ImageButton ID="ibtnReset" runat="server" CausesValidation="false" 
        CommandArgument='<%# Container.DataItemIndex %>'
        CommandName="resetpass" ImageUrl="~/Images/glyphicons_044_keys.png" 
Text="Button" />

以下是关于SO ASP.NET GridView RowIndex As CommandArgument的问题,供进一步阅读。

  

ButtonField类自动填充CommandArgument   具有适当指数值的财产。

Here is the MSDN source

答案 1 :(得分:4)

传递CommandArgument(假设您要传递名为PK的主键字段):

 <asp:TemplateField>
    <ItemTemplate>                
      <asp:ImageButton runat="server" ID="ibtnReset"
        Text="reset password"
        CommandName="resetpass"
        CommandArgument='<%# Eval("Pk") %>'
    </ItemTemplate>
  </asp:TemplateField>

或通过GridViewRow的{​​{1}}获取NamingContainer的引用:

ImageButton

您还可以将RowIndex作为CommandArgument传递:

WebControl wc = e.CommandSource as WebControl;
GridViewRow row = wc.NamingContainer as GridViewRow;
String usrname = ((TextBox)row.FindControl("username")).Text;

CommandArgument='<%# Container.DataItemIndex %>' 类会自动使用适当的索引值填充ButtonField属性。对于其他命令按钮,您必须手动设置命令按钮的CommandArgument属性。