OpenAuth.Net/OpenAuth.Mvc/Controllers/ErrorController.cs

17 lines
312 B
C#
Raw Normal View History

2016-01-05 10:03:35 +08:00
using System;
2015-12-02 10:06:30 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace OpenAuth.Mvc.Controllers
{
public class ErrorController : Controller
{
// GET: Error
public ActionResult NoAccess()
{
return View();
}
}
}