如何在 ASP.NET MVC2 中向用户添加属性?
在建立初始 ASP.NET MVC 2 网站和默认会员提供程序后,如何开始添加特定于用户的功能?例如,我们想让用户选择他们最喜欢的产品,并且我们想以某种方式记住这些选择,或者向用户添加最喜欢的颜色属性?
这些定制应该去哪里以及它们应该如何与开箱即用的会员系统相关联?
After I have the initial ASP.NET MVC 2 website and the default Membership provider up, how do I start adding features specific to an user? Like, say, we want to let users choose their favorite products and we want to remember these choices somehow or add a favorite color property to an user?
Where should these customizations go and how should they be associated with the out-of-the-box membership system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您通常会使用
配置文件
来存储用户相关的元数据。这里有一个链接,它是在 asp.net 中实现配置文件的一个很好的示例,而不是MVC 特定的,将为您提供在 MVC 中使用配置文件时需要采取一些额外步骤的背景知识,可以在 此处
You would typically use
profiles
to store user related meta data.here is a link to a fine example of implementing profiles in asp.net and while not MVC specific, will provide you with the background you need to take the few additional steps in using profiles in MVC which can be found here