asp.net 角色提供程序 - 获取用户电子邮件地址?
我正在使用角色提供程序,并让它通过 Windows 登录来管理我的 Intranet 上的用户。 我如何使用他们的用户信息从 asp.net 中提取他们的电子邮件地址以及其他一些用户内容?
我需要连接到活动目录吗?一个示例,如果这是可行的方法,那就太好了,
谢谢大家
i am using role provider and have it managing users on my intranet via their windows logins.
how can i pull their email address and maybe some other user content from asp.net using their user info?
do i need to hook into active directory? a sample fir this would be great if this is the way to go
thanks all
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会员资格提供者负责此操作,MembershipUser 类中有一个 Email 属性。 (请记住,无论提供程序、SQL 还是 AD,它都应该以相同的方式工作)
检查 这篇 MSDN 文章了解详细信息
The membership provider is responsible for this, there is an Email property on the MembershipUser class. (Remember that it should work the same irrespective of the provider, SQL or AD)
Check this MSDN article for detailed information
各位,以下是如何从 Active Directory 中提取任何数据点的方法。在我的代码中我得到了用户的电子邮件
i folks, here is how you can pull any data points from Active Directory. in my code i get the user's email