e.g. 3.9 Adding a New Action Method to the Controller

This commit is contained in:
Jason Zhu 2021-07-14 00:03:04 +10:00
parent fc94ae2213
commit 379a4f1e46

View File

@ -26,5 +26,10 @@ namespace PartyInvites.Controllers
ViewBag.Message = "Your contact page.";
return View();
}
public ActionResult RsvpForm()
{
return View();
}
}
}