简体   繁体   English

如何使用Razor重定向到主页

[英]how to redirect to home page using Razor

In my view I have the following which is my home page: 在我看来,我有以下是我的主页:

 @Html.ActionLink("OVERVIEW", "List", "Items", null, new { @class = "navItem" })

I have a logo, which I want make it click able and once clicked direct me to home page(the one above),the following does not work,any suggestion?: 我有一个徽标,我想让它点击它,一旦点击指向我主页(上面的那个),以下不起作用,任何建议?:

<div class="nav-primary">
    <a @{Response.Redirect("OVERVIEW"); } >   <img src="@Url.Content("~/Content/Images/theLogo.png")" /></a>
</div>

Try, 尝试,

<div class="nav-primary">
    <a href="@Url.Action("OVERVIEW", "List")">   <img src="@Url.Content("~/Content/Images/theLogo.png")" /></a>
</div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM