Ejemplo n.º 1
0
 public void carregarTabelaimoveis()
 {
     if (!IsPostBack)
     {
         Imovel imovel = new Imovel();
         dgImoveis.DataSource = imovel.buscaImoveis();
         dgImoveis.DataBind();
     }
     else
     {
         Imovel imovel = new Imovel();
         dgImoveis.DataSource = imovel.buscaImoveis();
         dgImoveis.DataBind();
     }
 }