我有以下代码,我希望每当用户点击他/她的名字时,它都会打开一个管理帐户页面。
@Html.ActionLink("Hello " + User.Identity.Name + "" ,"Manage", "Account" ,routeValues: null, htmlAttributes: new { title = "Manage" })
答案 0 :(得分:1)
您需要在控制器中创建一个Action
public ActionResult Manage()
{
return View();
}