如何在 ASP.NET MVC 视图中获取用户的成员资格配置文件?

发布于 2024-07-29 07:08:32 字数 375 浏览 5 评论 0原文

可能的重复:
如何分配配置文件值?

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

弄潮 2024-08-05 07:08:32

在 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.

那伤。 2024-08-05 07:08:32

成员资格在服务器端处理; 如果您希望该信息可供视图使用,请使用会话或 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.

明媚殇 2024-08-05 07:08:32

MVC 上访问用户配置文件的方式是通过视图中的 Profile 变量,如下所示:

<%= Profile %>

The way to access the user profile on MVC is through the Profile variable in the view, like this:

<%= Profile %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文