表单身份验证中支持多个域
是否有支持多个域的 ASP.Net 表单身份验证提供程序?
我们试图解决的问题是:
- 外部用户使用 xxx.yyy.com 访问我们的网站
- 内部用户使用 IP xxxx 访问我们的网站
我们希望表单身份验证适用于这两个用户组。无法将条目添加到内部 DNS。
当我们没有在 Forms 标签中设置用于表单身份验证的域时,我们能够使其正常工作吗?如果未在 Forms 标记中显式设置默认域,则域设置为什么。
亲切的问候,
Is there a Forms Authentication provider for ASP.Net which supports multiple domains?
The problem we are trying to solve is:
- External users access our website using xxx.yyy.com
- Internal users access our website using IP x.x.x.x
We want Forms authentication to work for both these groups of users. Adding an entry to the internal DNS is not an option.
We were able to get this working when we did not set the domain in the Forms tag for forms authentication? What is the domain set to if the default domain is not set explicitly in the Forms tag.
Kind regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表单身份验证不依赖于域。如果您有共享的会员数据库,它仅依赖于唯一的
applicationName
来过滤记录。The form authentication does not depend on the domain. It only depends on a unique
applicationName
for filtering the records if you have a shared Membership database.