控制对 ASP.NET 站点的权限
我需要使用自定义授权机制。它非常简单,使用数据库来存储会话之类的内容,并根据 cookie 检查其是否处于活动状态。没什么特别的。控制双方权限的最佳方式是什么?当然,如果用户登录,我可以检查每个站点上的加载事件,但还有其他方法吗?
I need to use custom authorization mechanism. Its very simple, uses database in which something like session is stored and checked if its active according to cookies. Nothing special. What is the best way to control permission to each side. Of course I can check in load event on each site if user is logged in but is there any other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
内置机制是ASP .NET Membership,应该适合基本的需要开箱即用。 (如果没有,您应该尝试解释为什么您不能使用它 - 可能有解决方案)。
The built-in mechanism is ASP .NET Membership, which should fit basic needs out of the box. (If it does not you should try explaining why you cannot use it - there may be a solution).