在 asp.net MVC2 中管理用户配置文件
我正在尝试使用 .net MVC2 将用户管理添加到 Web 应用程序,类似于 ProfileProvider:检索所有配置文件的列表 。
我想在“列出所有用户”页面上显示个人资料信息(名字、姓氏),但我不知道如何获取所有个人资料。 ProfileManager.GetAllProfiles() 返回 ProfileInfo 对象的集合,而不是实际的 Profile 对象。
虽然 ProfileInfo 类确实使我能够访问一些有用的信息,但我实际上无法获取该特定配置文件的任何属性。
有没有办法获取系统中的所有配置文件,以便我可以在管理页面上列出它们?
I'm trying to add user management to a web app using .net MVC2, similarly to ProfileProvider: retrieve list of all profiles.
I'd like to display profile information (first name, last name) on the "list all users" page, but I can't figure out how to get all profiles. ProfileManager.GetAllProfiles() returns a collection of ProfileInfo objects rather than actual Profile objects.
While the ProfileInfo class does give me access to some useful info, I can't actually get any properties of that particular profile.
Is there a way to get all Profiles in the system so that I can list them on an admin page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 MembershipProvider.GetAllUsers 获取有关每个用户的更广泛的信息。这将为您提供 MembershipUser 的集合。
You could try using the MembershipProvider.GetAllUsers to get more extensive information about each user. This will give you a collection of MembershipUser.