ASP.NET - 是否可以获得用户有权查看的所有页面的列表/集合?
我在基于 C# 的网站中使用表单身份验证,身份验证在各个文件夹/子文件夹中的 web.config 文件中定义。我想编写一个通用管理菜单系统,其中列出了用户有权打开的所有管理页面。当我添加页面时,我希望它们自动显示在菜单中。所以...
我需要获取活动用户有权打开的所有页面的列表/集合。这在 ASP.Net 3.5 中可能吗?
我假设 ASP.Net 在某处有一个内部页面集合,以及它们所需的角色(因为当您尝试打开页面时它必须检查某处)?
I'm using forms authentication in my C# based web site, with the authentication defined in web.config files in the various folders/sub-folders. I want to write a generic administration menu system, that lists all of the admin pages that the use is authorized to open. As I add pages, I want them to automatically show up in the menu. So...
I need to obtain a list/collection of all pages that the active user is authorized to open. Is this possible in ASP.Net 3.5?
I assume that ASP.Net has an internal collection of pages somewhere, together with their required roles (as it must check somewhere when you attempt to open a page)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议考虑使用站点地图(在 ASP.Net 中,web.SiteMap)。然后您可以使用 SiteMap 作为数据源(以及为每个页面定义角色等)。
I would suggest looking into using a sitemap (in ASP.Net, web.SiteMap). Then you can use the SiteMap as a datasource (as well as define roles, etc for each page).
您的假设不正确...这些页面没有内部列表,只有文件系统。当 ASP.NET 尝试打开页面时,将逐个文件检查访问权限。
要执行您想要的操作,您必须使用 System.IO 自行编写代码并从 web.config 获取授权设置。
You assume incorrectly... There is no internal listing of these pages, only the file system. Access is checked on a file-by-file basis when ASP.NET attempts to open the page.
To do what you're looking for, you'll have to code it up yourself using System.IO and getting the authorization settings from web.config.