I have a Gridview with two buttons and I want to be able to run code when the user clicks on them. I have tried using Row_command
and setting a CommandName
on the buttons , but i am going round in circles! Help!
I cant seem to get the username name from the first cell in order to search for the user in the rowcommand:
protected void gridview_search_RowCommand(object sender,
GridViewCommandEventArgs e)
{
if (e.CommandName == "unlock_account")
{
string user = gridview_search.SelectedRow.Cells[0].ToString();
//run code when user is obtained
}
}
My syntax was wrong for the command name part. I finally figured it out and then was able to get selected value from the gridview using DataKeys and was then able to send this value to unlock user account.