如何在外部配置文件中存储 system.web.authorization 详细信息?
我想为不同的环境维护不同的用户授权列表。我知道可以使用 configSource 在外部文件中分解连接字符串,但是对于以下内容我将如何执行此操作?
<authorization>
<allow users="someuser1"/>
<allow users="someuser2"/>
<allow users="someuser3"/>
<deny users="*"/>
</authorization>
I want to maintain different user authorization lists for different environments. I know that connectionstrings can be broken out in an external file with configSource, but how would I do this for the following?
<authorization>
<allow users="someuser1"/>
<allow users="someuser2"/>
<allow users="someuser3"/>
<deny users="*"/>
</authorization>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用角色提供程序,而不是将每个单独的用户添加到允许列表中。然后,对于每个环境,您指定哪个组具有访问权限:
Use a roles provider instead of adding each individual user to your allow list. Then for each environment you specify which group has access: