如何使用web.config授权在asp.net MVC中匿名访问特定页面?

时间:2015-06-08 09:37:00

标签: asp.net-mvc asp.net-mvc-4 authentication web-config

如何使用web.config授权在asp.net MVC中匿名访问特定页面?

我知道这可以使用[Authorize]和[AllowAnonymous]属性来完成,但我想知道我是否可以直接从配置文件中执行此操作。

例如

[Authorize]
public class HomeController : Controller
{
    [AllowAnonymous]
    public ActionResult Index()
    {
        return View();
    }


    public ActionResult TrackingPage()
    {
        return View();
    }


    public ActionResult profile()
    {
        ViewBag.profile = true;
        return View();
    }
    public ActionResult content()
    {
        return View();
    }

} 

如果我想从配置文件中做同样的事情,那该怎么办呢?

0 个答案:

没有答案