asp.net-mvc – ActionResult上的自定义属性

这可能是菜鸟的问题,但是

假设我有一个ActionResult,我只想在几个小时后授予访问权限.

我们还说我想用自定义属性来装饰我的ActionResult.

所以代码可能看起来像

[AllowAccess(after="17:00:00",before="08:00:00")]
public ActionResult AfterHoursPage()
{
    //Do something not so interesting here;

    return View();
}

我该如何才能得到这个工作?

我已经做了一些关于创建自定义属性的研究,但是我觉得我错过了如何消耗它们.

请假设我知道几乎没有关于创建和使用它们.

解决方法

尝试这个(未经测试):
public class AllowAccessAttribute : AuthorizeAttribute
{
    public DateTime before;
    public DateTime after;

    protected override bool AuthorizeCore(HttpContextBase httpContext)
    {
        if (httpContext == null)
            throw new ArgumentNullException("httpContext");

        DateTime current = DateTime.Now;

        if (current < before | current > after)
            return false;

        return true;
    }
}

更多信息:
http://schotime.net/blog/index.php/2009/02/17/custom-authorization-with-aspnet-mvc/

相关文章

这篇文章主要讲解了“WPF如何实现带筛选功能的DataGrid”,文...
本篇内容介绍了“基于WPF如何实现3D画廊动画效果”的有关知识...
Some samples are below for ASP.Net web form controls:(fr...
问题描述: 对于未定义为 System.String 的列,唯一有效的值...
最近用到了CalendarExtender,结果不知道为什么发生了错位,...
ASP.NET 2.0 page lifecyle ASP.NET 2.0 event sequence cha...