mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
17 lines
312 B
C#
17 lines
312 B
C#
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();
|
|
}
|
|
}
|
|
} |