按角色限制用户控制的访问

发布于 2024-12-04 11:13:03 字数 135 浏览 4 评论 0原文

是否可以限制特定角色的特定用户控件的访问?

我有加载(也)info.ascx 的页面(default.aspx),

我想限制对info.ascx 的访问,并在要加载他的地方显示类似“未经授权”的消息。

谢谢!

is possible to limit access for particular usercontrol for particular role?

I have page (default.aspx) that load (also) info.ascx

I wanto to restricted access to info.ascx and display a message like 'unauthorized' where he was to be loaded.

thanks!

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

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

发布评论

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

评论(2

ぺ禁宫浮华殁 2024-12-11 11:13:03

ASP.Net 中没有内置任何内容。您必须使用角色提供程序和自定义用户控件来实现自己的访问控制。

There is nothing inbuilt in ASP.Net. You would have to implement your own access control using the Role providers and Custom user controls.

巾帼英雄 2024-12-11 11:13:03

您可以使用

<authorization>
    <allow users="user1, user2"/>
    <deny users=”?”/>
</authorization>

这篇文章可能会有所帮助:
http://www.codeproject.com/Articles/301324/Authorization-in -ASP-NET

You can use

<authorization>
    <allow users="user1, user2"/>
    <deny users=”?”/>
</authorization>

This article may help:
http://www.codeproject.com/Articles/301324/Authorization-in-ASP-NET

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