Usa el evento RowCommand del gridview. Dentro puedes identificar por medio del command name:
    
Código C#:
Ver originalprotected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
      if(e.CommandName == "MiBoton")
      {
               //tu codigo aqui!
       }
}
  
  
**debes definir el commandName de tu columna Command.