是否可以使用 securityTrimmingEnabled=true 阻止页面打开
我有可以正常协同工作的自定义 SiteMapProvider 和 RoleProvider:如果请求的页面的 SiteMapNode.Roles
中未提及当前用户的角色,IsAccessibleToUser
返回 false
。
因此面包屑或菜单不显示项目。
但用户仍然可以直接输入现在显示的 URL 并打开页面。我怎样才能阻止这种行为?
我还有下一个 Web.config 设置:
<authorization>
<allow roles="Admin,Manager,Client" />
<deny users="*" />
</authorization>
I have custom SiteMapProvider and RoleProvider that works together properly: IsAccessibleToUser
returns false
if current user's role isn't mentioned in SiteMapNode.Roles
for page requested.
So breadcrumbs or menu doesn't show an item.
But user still can type now showed URL directly and open a page. How can I block such behavior?
Also I have next Web.config settings:
<authorization>
<allow roles="Admin,Manager,Client" />
<deny users="*" />
</authorization>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)