public ActionResult CreateBlogPost(BlogPost post) { if (this.ModelState.IsValid) { //todo: add data RedirectToAction("Index"); } return View(post); }
public ActionResult CreateBlogPost() { var post = new BlogPost(); return View(post); }