protected void BtnPesquisarProduto_Click(object sender, EventArgs e) { DataSet dsProdutosAdd = ControleGenerico.ToDataSet(aplListaCompra.GetProdutos(this.TxtNomePesquisaProduto.Text.Trim())); GvwAddProduto.DataSource = dsProdutosAdd; GvwAddProduto.DataBind(); }
protected void Page_Load(object sender, EventArgs e) { ControleGenerico.Page_Load(Page); if (!IsPostBack) { if (this.Id > 0) { aplListaCompra.SetListaCompra(this.Id); this.PreencherCampos(); ListarItemsAdicionados(); } else { Response.Redirect("../../Pagina/ListaCompra/ListagemListaCompra.aspx"); } } }