e.g. 3.111 Adding an Action Method to Support POST Requests

chap3
Jason Zhu 2021-07-14 21:11:43 +10:00
parent 0a54588472
commit a97e2ae35a
1 changed files with 8 additions and 0 deletions

View File

@ -27,9 +27,17 @@ namespace PartyInvites.Controllers
return View();
}
[HttpGet]
public ActionResult RsvpForm()
{
return View();
}
[HttpPost]
public ActionResult RsvpFrom()
{
// TODO: Email guestResponse to the part organizer
return View("Thanks", guestResponse);
}
}
}