Esempio n. 1
0
        protected void btnAgregar_Click(object sender, EventArgs e)
        {
            Entidades.EntidadesPost post = new Entidades.EntidadesPost()
            {
                Titulo  = txtTitulo.Text,
                Resumen = txtResumen.Text,
                Cuerpo  = txtCuerpo.Text
            };

            postNegocio.InsertarPost(post);
            Response.Redirect("~/Post/ABMPost/ABMPost.aspx");
        }