如何在 ASP.NET MVC 视图中获取用户的成员资格配置文件?
可能的重复:
如何分配配置文件值?
我正在使用 ASP.NET MVC 和成员资格提供程序。 如何在视图中获取用户的个人资料? 有什么具体方法可以得到吗?
开箱即用的模板项目以这种方式访问用户名:
<%= Html.Encode(Page.User.Identity.Name) %>
我希望有类似的方式来访问配置文件数据。
Possible Duplicate:
How to assign Profile values?
I'm using ASP.NET MVC and the Membership providers. How do I get the profile of a user in a view? any particular method to get it?
The template project out of the box access the username in this way:
<%= Html.Encode(Page.User.Identity.Name) %>
I'd like to have a similar way to access the profile data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 MVC 中,您不应直接在视图中访问配置文件。 您应该使用 用户配置文件的值填充模型对象控制器 并使用视图来呈现这些值。
In MVC, you shouldn't access the profile directly in the view. You should fill a model object with values of the user profile in the controller and use the view to render those values.
成员资格在服务器端处理; 如果您希望该信息可供视图使用,请使用会话或 ViewData 字典。 在渲染页面之前,将适当的数据或对象放入 ViewData 字典中,或将其添加为会话的一部分。 如果您只在一种视图中使用,那么我推荐 ViewData。
Membership is handled at the server side; if you want that information to be available to the View, then use either your Session or the ViewData dictionary. Before you render the page, put the proper data or object into the ViewData dictionary, or add it as part of the Session. If you are only using in one view, then I recommend ViewData.
MVC 上访问用户配置文件的方式是通过视图中的 Profile 变量,如下所示:
The way to access the user profile on MVC is through the Profile variable in the view, like this: