增加权限错误页面

This commit is contained in:
yubaolee
2015-12-02 10:06:30 +08:00
parent 2b357fbd6b
commit 87712e2b49
6 changed files with 85 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
using System;
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();
}
}
}