protected void btnSalvar_Click(object sender, EventArgs e) { Categoria cat = new Categoria(); cat.Nome = txtNome.Text; cat.Descricao = txtDescricao.Text; cat.ativo = true; CategoriaController ctrl = new CategoriaController(); ctrl.Adicionar(cat); }