protected void Button2_Click(object sender, EventArgs e)
        {
            string text = this.txtRol.Text.ToString();

            if (string.IsNullOrEmpty(text))
            {
                this.Page.RegisterClientScriptBlock("Mensaje", "<script>alert('Debe ingresar Rol-Exhorto');</script>");
            }
            else
            {
                Consulta.ActualizaRol(this.hddid_exhorto.Value.ToString(), text, this.dtribunal.SelectedValue.ToString());
                this.Page.RegisterClientScriptBlock("Mensaje", "<script>alert('Datos modificados correctamente');</script>");
            }
        }