There is a form for adding an entry. How can I display the lower area of the page when reloading the page?
Now there is such an implementation:
public ActionResult CreateReview(GuestbookReview review) { review.DateAdded = DateTime.Now; db.GuestbookReviews.Add(review); db.SaveChanges(); return new RedirectResult(Url.Action("Index") + "#post"); } at the bottom of the page posted: div name = "# post"
But for some reason this method does not work, no action takes place ...