blob: 0bf7ab3a3155bceced579ba1076ff6ed6abc3720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 with OpenID RP + OAuth SP support!";
return View();
}
public ActionResult About() {
return View();
}
public ActionResult PrivacyPolicy() {
return View();
}
}
}
|