protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                categoriaDropDownList.DataSource     = ProdutosDao.ListarCategorias();
                categoriaDropDownList.DataTextField  = "Descricao";
                categoriaDropDownList.DataValueField = "Id";
                categoriaDropDownList.DataBind();

                List <string> unidades = new List <string>()
                {
                    "KILO", "PACOTE", "POLEGADAS", "GRAMAS", "LITROS", "DECIBEIS", "UNIDADE"
                };
                unidadeDropDownList.DataSource = unidades;
                unidadeDropDownList.DataBind();

                produtosRepeater.DataSource = ProdutosDao.ListarProdutos();
                produtosRepeater.DataBind();
            }
        }