在哪里可以找到适用于 AD 用户的 MVC 用户管理助手?
因此,我有一个使用 Active Directory 成员资格提供程序的 MVC 2 应用程序。身份验证就像魅力一样!现在我需要添加一些额外的屏幕以允许用户:
- 更改密码
- 重置忘记的密码(通过电子邮件发送超级秘密链接或其他内容?)
- 有条件地添加其他用户(当然是某个角色的用户,由另一个角色提供者确定) 。
- 有条件地禁用现有用户(角色同上)。
我只是在寻找一些非常基本的功能,但我无法找到任何 MVC 帮助程序来帮助解决此问题,甚至找不到任何合法的 .NET 库来提供帮助。我们很乐意购买一些东西来做到这一点,但我还没有看到任何让我相信是好的东西!
有人有什么建议吗?当然,现在还有许多其他人必须解决这个问题......
So I have an MVC 2 app that uses the Active Directory Membership Provider. Authentication works like a charm! Now I need to add some additional screens to allow the users to:
- Change their password
- Reset forgotten passwords (email a super secret link or something?)
- Conditionally add additional users (of course users of a certain role, as determined by another Role Provider).
- Conditionally disable existing users (ditto on roles).
I'm just looking for some very basic functionality and I'm having trouble finding either any MVC helpers to help with this or even any legitimate .NET libraries to help. We'd be happy to buy something to do this but I've not seen anything that's convinced me as being good!
Does anybody have any suggestions? Surely many others have had to tackle this by now...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我修改了这里找到的代码 http://www.codeproject.com/KB/system/everythingInAD .aspx 满足我的需要。
ActiveDirectoryMembershipProvider
的功能极其有限。 ( http://msdn.microsoft.com/en -us/library/system.web.security.activedirectorymembershipprovider.aspx )I modified code found here http://www.codeproject.com/KB/system/everythingInAD.aspx for my needs. The
ActiveDirectoryMembershipProvider
is extremely limited on it's capabilities. ( http://msdn.microsoft.com/en-us/library/system.web.security.activedirectorymembershipprovider.aspx )