diff options
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Controllers/HomeController.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs new file mode 100644 index 0000000..7182862 --- /dev/null +++ b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs @@ -0,0 +1,24 @@ +namespace MvcRelyingParty.Controllers { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Web; + using System.Web.Mvc; + + [HandleError] + public class HomeController : Controller { + public ActionResult Index() { + ViewData["Message"] = "Welcome to ASP.NET MVC!"; + + return View(); + } + + public ActionResult About() { + return View(); + } + + public ActionResult PrivacyPolicy() { + return View(); + } + } +} |