Esempio n. 1
0
    protected void btnGravar_Click(object sender, EventArgs e)
    {
        String  retorno;
        Noticia not = new Noticia();

        if (string.IsNullOrEmpty(edtNotId.Text))
        {
            retorno = not.inserir(edtNotTit.Text, edtNotTex.Text, new DateTime(2017, 5, 17), edtImagem.Text, int.Parse(edtCatId.Text));
        }
        else
        {
            retorno = not.editar(int.Parse(edtNotId.Text), edtNotTit.Text, edtNotTex.Text, new DateTime(2017, 5, 17), edtImagem.Text, int.Parse(edtCatId.Text));
        }
        if (!string.IsNullOrEmpty(retorno))
        {
            Funcoes.showMessage(this, retorno);
            return;
        }
        else
        {
            Funcoes.showMessage(this, "Registro Salvo com Sucesso");
        }
        habilitarCampos(false);
        atualizarDados();
    }