如何在 ASP.NET MVC 中定义对象基础授权?

发布于 2024-09-08 00:02:42 字数 112 浏览 4 评论 0原文

我正在为视频库创建一个应用程序,其中有不同类型的 CD,如音频、视频、歌曲、电影等。我需要只允许用户访问某些 CD 类型,例如仅歌曲和电影。

我怎样才能在 ASP.NET MVC 中实现这一点?

I am creating an application for a video gallery, where I have different types of cds like audio, video, songs, movies etc. I need to give users access to only some of the cds types, for example only songs and movies.

How can i achieve this in ASP.NET MVC?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱倦旧时光 2024-09-15 00:02:42
public class ViewCDsController : BaseController
{
    [Authorize(Users="A")]]
    public ActionResult MovieType
    {
        //select only the correct CDs to return to the view

        return View();
    }    
}

检查此页面以获取更多信息 http://www.asp.net/mvc/tutorials/authenticating-users-with-forms-authentication-cs" rel="nofollow noreferrer"> asp.net/mvc/tutorials/authenticating-users-with-forms-authentication-cs

public class ViewCDsController : BaseController
{
    [Authorize(Users="A")]]
    public ActionResult MovieType
    {
        //select only the correct CDs to return to the view

        return View();
    }    
}

check this page for more information http://www.asp.net/mvc/tutorials/authenticating-users-with-forms-authentication-cs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文