发送评论到存储库

时间:2014-03-31 21:27:29

标签: ajax json

如何在内容存储库中添加评论? 我可以在c.Comment Text之后添加这一行吗?
CommentRepository.Instance.AddComment(评语);

    [HttpPost]
    public ActionResult AddComment(string comment)
    {
        Comment c = new Comment();
        c.CommentText = comment;
        return Json(c, JsonRequestBehavior.AllowGet);
    }

0 个答案:

没有答案