按角色限制用户控制的访问
是否可以限制特定角色的特定用户控件的访问?
我有加载(也)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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
您可以使用
这篇文章可能会有所帮助:
http://www.codeproject.com/Articles/301324/Authorization-in -ASP-NET
You can use
This article may help:
http://www.codeproject.com/Articles/301324/Authorization-in-ASP-NET