Как обновить и вставить один и тот же метод контроллера в MVC5
код:-
[HttpPost] [AllowAnonymous] [ValidateAntiForgeryToken] public ActionResult Index(HTMLDisplayViewModel model) { try { // Verification if (ModelState.IsValid) { this.databaseManager.Insert_HTML_Content(model.HtmlContent); //context.Entities.Add(entity); // save info. // Commit database. this.databaseManager.SaveChanges(); // Settings. model.HTMLContentList = this.databaseManager.display_all_HTML_Content().ToList(); model.Message = "Information successfully!! saved."; model.IsValid = true; } else { if (string.IsNullOrEmpty(model.HtmlContent)) { // Settings. model.HTMLContentList = new List<display_all_HTML_Content_Result>(); model.Message = "Require field can not be emptied"; model.IsValid = false; } } } catch (Exception ex) { // Info Console.Write(ex); } // Info return this.View(model); }
Что я уже пробовал:
я хочу добавлять и обновлять текст через ту же текстовую область в MVC 5