protected void Page_Load(object sender, EventArgs e) { int id_Noticia = Convert.ToInt16(Request["cod"]); Modelo.Noticia noticia = new Modelo.Noticia(); noticia = NoticiaOad.Get_Noticia(id_Noticia); lblManchete.Text = noticia.Ds_Manchete; lblData.Text = noticia.Dt_Criacao.ToString("dd/MM/yyyy"); lblConteudo.Text = noticia.Ds_Conteudo; }
protected void btnExcluir_Click(object sender, EventArgs e) { int id_noticia = Convert.ToInt16(Request["Noticia"]); Noticia noticia = new Noticia(); noticia = NoticiaOad.Get_Noticia(id_noticia); NoticiaOad.OperacaoNoticia(noticia, "E"); btnCancelar.Visible = false; btnExcluir.Visible = false; lblConfirmacao.Visible = false; lblSucesso.Visible = true; btnVoltar.Visible = true; }