Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created February 19, 2018 23:13
Show Gist options
  • Save explorer14/72f149722223317d337136b53a96f88e to your computer and use it in GitHub Desktop.
Save explorer14/72f149722223317d337136b53a96f88e to your computer and use it in GitHub Desktop.
public class HomeController : Controller
{
public IActionResult Contact()
{
ViewData["Message"] = "Your contact page.";
return View();
}
[HttpPost]
public IActionResult Submit(string comment)
{
TempData["Comment"] = comment;
return RedirectToAction(nameof(Contact));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment