protected void btnActualizar_Click(object sender, EventArgs e) { try { Session["ListaCompleta"] = LogicaPedido.ListarGeneradosYEnviados(); gvEstadoPedido.DataSource = (List <Pedido>)Session["ListaCompleta"]; gvEstadoPedido.DataBind(); btnCambiarEstado.Visible = true; btnCambiarEstado.Enabled = false; btnActualizar.Visible = false; btnActualizar.Enabled = false; lblError.Text = ""; } catch (Exception ex) { lblError.Text = ex.Message; } }