ASP.net - 简单列出所有用户
给定一个配置文件字段,我通过以下方式存储每个用户:
Context.Profile.SetPropertyValue("IsSubscribed", isSubscribed.Checked);
Context.Profile.Save();
我如何在另一个页面上获取 isSubscribed = true
的所有用户电子邮件地址?
Given a profile field I store with each user the following way:
Context.Profile.SetPropertyValue("IsSubscribed", isSubscribed.Checked);
Context.Profile.Save();
How would I on another page fetch all users email addresses where isSubscribed = true
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:要从会员系统获取用户的电子邮件地址,请使用:
Edit: To get the user's email address from the membership system use: