4

我在做什么-在单击图像按钮时重置用户密码。

到目前为止完成 - 添加了 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);
    }
4

2 回答 2

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 属性。

这是MSDN源

于 2012-05-04T17:50:00.537 回答
4

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

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

GridViewRow通过NamingContainer您的ImageButton

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

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

CommandArgument='<%# Container.DataItemIndex %>'

该类自动使用适当的索引值ButtonField填充属性。CommandArgument对于其他命令按钮,您必须手动设置CommandArgument命令按钮的属性。

于 2012-05-04T17:53:11.930 回答