protected void Deshabilitar(object sender, GridViewCommandEventArgs e)
 {
     this.gridViewRow = ((Control)e.CommandSource).BindingContainer as GridViewRow;
     if (e.CommandName.CompareTo("Deshabilitar") == 0)
     {
         string str = e.CommandName.ToString();
         Transaccion.EliminarDocuDigitalizado(((Label)this.gridViewRow.FindControl("lblCodigo")).Text);
         this.filesubir.Enabled = true;
         this.Button2.Visible   = true;
         this.filesubir.Focus();
     }
 }