Example #1
0
        protected void btnComment_Click(object sender, EventArgs e)
        {
            if (txtComment.Text != "")
            {
                comentarios.Comentarios = txtComment.Text;
                comentarios.Libro       = lblAuxTit.Text;
                comentarios.Usuario     = Session["Usuario"].ToString();
                DAOLibros.InsertarComentarios(comentarios);
                Response.Redirect("/details");
            }
            else
            {
                return;
            }

            //bindComments();
        }