我在做什么-在单击图像按钮时重置用户密码。
到目前为止完成 - 添加了 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);
}