Active Directory 会员资格提供商与 Active Directory 成员资格提供商之间的合并sqlprovider
我被要求在 ASP.NET 网站中的域用户和网站用户之间进行合并 但是当我将默认成员资格设置为其中之一时 AD会员提供者 或者 数据库提供者 我无法访问其他用户,
就像如果我有域帐户,而成员资格是 sqlpro,它将无法访问该网站,反之亦然,
我需要使该域的所有用户和该网站的原始用户成为能够访问他们的帐户
I have been asked to merge between the users of domain and the users of a web site in asp.net website
however when i set the default membership to one of them
ADMembershipProvider
or
SqlProvider
I can't access the other users
like if i have domain account while the membership is sqlpro it will not be able to access the website and vice versa
I need to make all the users of the domain and the original users of the website to be able to access their accounts
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该很简单,只需创建您自己的 MembershipProvider,它在内部使用两者来执行用户验证。
像这样的东西:
That should be simple, just create your own MembershipProvider which internally uses both to perform user validation.
Something like: