protected void Page_Load(object sender, EventArgs e) { compra = new Compra(); if (!Page.IsPostBack) { actualizarGrid(); } }
protected void Page_Load(object sender, EventArgs e) { compra = new Compra(); if (!Page.IsPostBack) { GridDetalle.DataSource = carrito.listarDetalle(); GridDetalle.DataBind(); LabelEnvio.Text = string.Format("{0:c}", ENVIO); LabelTotal.Text = string.Format("{0:c}", carrito.totalCarrito() + ENVIO); } }