@Html.ActionLink("Edit Profile", "Index", "Profile")
我想要用户的UserName,而不是“编辑个人资料”文本。此操作链接位于用户的共享页面中。
答案 0 :(得分:3)
@Html.ActionLink(HttpContext.Current.User.Identity.Name, "Index", "Profile")
答案 1 :(得分:0)
如果username
位于session
,请执行以下操作:
@Html.ActionLink(Session["Username"].ToString(), "Index", "Profile")