public IActionResult CreateDojoProcess(Dojo newDojo) { if (ModelState.IsValid) { dojoFactory.AddDOJO(newDojo); return(RedirectToAction("Index")); } else { // TEMPDATA NOT SHOWING ON REDIRECT? TempData["Errrors"] = "Please fill out the form completely!"; return(RedirectToAction("Index")); } }