コード例 #1
0
        protected void Cadastrar(object sender, EventArgs e)
        {
            try
            {
                Artigo a = new Artigo();

                a.DSTitulo = Util.formataTexto(txtTitulo.Text, false);
                a.DSCorpo  = ckeditor_standard.InnerText;

                if (radAtivo_N.Checked)
                {
                    a.BTAtivo = false;
                }
                else
                {
                    a.BTAtivo = true;
                }

                ArtigoDAL aDAL = new ArtigoDAL();
                aDAL.Cadastrar(a);

                Response.Write("<script language='JavaScript'>alert('Artigo cadastrado com sucesso');window.parent.location='ListarArtigos.aspx';</script>");
            }
            catch (Exception)
            { throw; }
        }