ASP.NET - 是否可以获得用户有权查看的所有页面的列表/集合?

发布于 2024-08-19 15:34:20 字数 242 浏览 7 评论 0原文

我在基于 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 技术交流群。

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

发布评论

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

评论(2

森林很绿却致人迷途 2024-08-26 15:34:20

我建议考虑使用站点地图(在 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).

懵少女 2024-08-26 15:34:20

您的假设不正确...这些页面没有内部列表,只有文件系统。当 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.

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