Espero te sirva :
Código c#:
Ver originalprotected void btnEliminar_Click(object sender, EventArgs e)
{
if ((dtgDetalle.Rows.Count > 0) && (dtgDetalle.Rows[dtgDetalle.SelectedIndex].Cells[0].Text != null))
{
ID = dtgDetalle.Rows[dtgDetalle.SelectedIndex].Cells[0].Text;
contacto persona = new contacto();
persona.EliminarContacto(Convert.ToInt32(ID));
Response.Write("<script language='Javascript'> alert('Contacto Eliminado'); </script>");
}
else
{
Response.Write("<script language='Javascript'> alert('No se selecciono datos'); </script>");
}
}