protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { Categoria objCategoria = new Categoria(); lista = objCategoria.consultar(); if (lista != null) { gdvCategoria.DataSource = lista; gdvCategoria.DataMember = "Tabela"; gdvCategoria.DataBind(); } } }
private void carregarTabelaDataSet() { Categoria objListarTodasCategorias = new Categoria(); DataSet dtListarTodosFilmes = objListarTodasCategorias.consultarTodos(); for (int linha = 0; linha <= dtListarTodosFilmes.Tables["Tabela"].Rows.Count - 1; linha++) { TableRow tRow = new TableRow(); tblClassificacao.Rows.Add(tRow); for (int coluna = 0; coluna <= 1; coluna++) { TableCell tCell = new TableCell(); tCell.Text = Convert.ToString(dtListarTodosFilmes.Tables["Tabela"].Rows[linha][coluna]); tRow.Cells.Add(tCell); } } }
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { Categoria oCategoria = new Categoria(); lista = oCategoria.consultarTodos(); cboClassificacao.DataTextField = "Descrição"; cboClassificacao.DataValueField = "id"; cboClassificacao.DataSource = lista; cboClassificacao.DataMember = "Tabela"; cboClassificacao.DataBind(); cboClassificacao.Items.Insert(0, "Selecione"); cboClassificacao.SelectedIndex = 0; Genero oGenero = new Genero(); lista = oGenero.consultarTodos(); cboGenero.DataTextField = "Genero"; cboGenero.DataValueField = "id"; cboGenero.DataSource = lista; cboGenero.DataMember = "Tabela"; cboGenero.DataBind(); cboGenero.Items.Insert(0, "Selecione"); cboGenero.SelectedIndex = 0; CadFilmes oCadFilmes = new CadFilmes(); lista = oCadFilmes.consultarTodos(); if (lista != null) { gdvCadFilmes.DataSource = lista; gdvCadFilmes.DataMember = "Tabela"; gdvCadFilmes.DataBind(); } } }
protected void btnDeletar_Click(object sender, EventArgs e) { Categoria objCategoria = new Categoria(); objCategoria.deletar(lblCategoria.Text); Response.Redirect(Request.RawUrl); }
protected void btnAlterar_Click(object sender, EventArgs e) { Categoria objCategoria = new Categoria(); objCategoria.alterar(lblCategoria.Text, txtNomeCategoria.Text); Response.Redirect(Request.RawUrl); }
protected void btnAdicionar_Click(object sender, EventArgs e) { Categoria objCategoria = new Categoria(); objCategoria.adicionar(txtNomeCategoria.Text); }
protected void btnInserir_Click1(object sender, EventArgs e) { Categoria objCategoria = new Categoria(); objCategoria.inserir(txtidCategoria.Text, txtdescricao.Text); Response.Redirect(Request.RawUrl); }