使用用户角色保护文件夹中的页面?

发布于 2024-11-18 11:00:56 字数 322 浏览 7 评论 0原文

我在我的应用程序死记中的不同文件夹中管理不同的角色页面。管理文件夹包含管理的所有页面。用户拥有登录用户的所有页面。

请建议我应该采用什么方法来检查用户是否有效并具有正确的权限?

我想我应该使用会话变量,当用户登录时,我将其 ID 和用户类型保留在会话中。是否可以有一些更优雅且需要更少编码的方法?

用户登录的页面是一个包含近 25 个字段的详细信息页面,并且它具有 ajax 验证以及其他客户端和服务器端验证。

我不太了解 ASP.NET 的会员提供程序,也从未使用过这些,如果您有建议,请给我一些链接或关键字以进一步了解。

谢谢

I am managing different roles pages in different folders in my application rote. Admin folder has all pages of admin. User has all pages of loged in user.

Please advice what way I should adopt to check that user is valid and have correct permissions ?

I was thinking I should user sessioon variables, as a user logs in I keep its Id and user type in session. Can there be some more elegent and less coding required way ?

The page where user signs in is a detail page with almost 25 fields and it has ajax validations, and othe client and server side validations.

I dont know much about membership providers by asp.net and never used these , Kindly if you advice something reffer me some link or keyword to look further.

Thanks

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

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

发布评论

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

评论(2

烟花易冷人易散 2024-11-25 11:00:56

您可以在 web.config 中轻松管理此类配置。只需添加 web.configconfiguration 部分即可。

<location path="Admin">
  <system.web>
    <authorization>
        <deny users="?"/>               
        <allow roles="Administrator"/>
    </authorization>
  </system.web>
</location>

表示未经身份验证的用户将无法访问 Admin 文件夹

您想要允许的另一个文件夹的示例经理角色

<location path="ManagerFolder">
  <system.web>
    <authorization>
        <deny users="?"/>               
        <allow roles="Manager"/>
    </authorization>
  </system.web>
</location>

You can manage such configuration easily in the web.config. Simply add in a configuration section of web.config.

<location path="Admin">
  <system.web>
    <authorization>
        <deny users="?"/>               
        <allow roles="Administrator"/>
    </authorization>
  </system.web>
</location>

<deny users="?"/> mean's unauthenticated user will not be able to access the Admin Folder

An example with another Folder, you want to allow, that has Manager Role:

<location path="ManagerFolder">
  <system.web>
    <authorization>
        <deny users="?"/>               
        <allow roles="Manager"/>
    </authorization>
  </system.web>
</location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文