0

我正在使用 MVC4 和 SimpleMembership。一切正常,但我对 _LoginPartial 视图有疑问。

这是部分视图的代码:

@if (Request.IsAuthenticated) {
    <text>
        Hello, @Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })!
        @using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) {
            @Html.AntiForgeryToken()
            <a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>
        }
    </text>
} else {
    <ul>
        <li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>
        <li>@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })</li>
    </ul>
}

如何在“您好,用户”旁边显示个人资料图片?我有一个包含图片文件路径的用户模型。这也保存在数据库中。

问题是我不知道如何以正确的方式显示它。

先感谢您!

4

1 回答 1

1

您可以使用RenderAction它返回一个PartialView包含图像标签

    Hello, @Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })! 
@{ Html.RenderAction("DisplayPhoto", "Account"); }

控制器

public ActionResult DisplayPhoto()
{
   // query the user photo then return the view 
   ViewBag.FilePath = GetUserPhoto(username);
   return PartialView("_DisplayPhoto");
}

部分视图

<img src="@ViewBag.FilePath" alt="photo" />
于 2013-10-31T10:02:31.060 回答