protected void btnDelete_Click(object sender, ImageClickEventArgs e)
    {
        ImageButton imgButton = (sender as ImageButton);
        GridViewRow row       = imgButton.Parent.Parent as GridViewRow;
        int         etiqueta  = Convert.ToInt32(grvEtiquetaStatusConcepto.DataKeys[row.RowIndex].Values["Id"]);

        //StatusConcepto scActual = listStatusConcepto.Single(x => x.Id == Convert.ToInt32(grvStatusConcepto.DataKeys[indiceSeleccionadoGrupo].Values["Id"]));
        if (statusConceptoActual.EliminaEtiquetaStatus(etiqueta))
        {
            ConsultarEtiquetasStatusConcepto(statusConceptoActual.Id);
            LlenarGridViewEtiquetasConcepto();
            ConsultarEtiquetasBanco(Convert.ToInt32(ddlBancoFinanciero.SelectedItem.Value));
            LlenarComboEtiquetasBanco();
        }
    }