会员资格 - 获取用户电子邮件
我使用 ASP.Net MVC2 和默认的成员资格/配置文件/角色提供程序,我想在 ForgotPassword 操作中访问用户电子邮件,以通过电子邮件将新密码发送给用户,但到目前为止我只能获取用户名(用户.身份.名称)。
我在这里错过了什么吗?
I am using ASP.Net MVC2 with the default membership/profile/role providers, I'd like to access the user email in my ForgotPassword Action to email a new password to the user, but so far I've only been able to get the username (User.Identity.Name).
Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 Membership 类 f.ex 访问 MembershipUser 类中的用户信息:
You need to access user information in MembershipUser class using Membership class, f.ex: