我使用以下源代码将图像用作指定产品/产品列表视图(控制器/操作)的导航链接。
代码:
@Html.Raw(@Html.ActionLink("Milk Products", "Productlistview", "Product", new { categoryid = 1 }).ToHtmlString().Replace("Milk Products", "<img src=\"/Content/ImagesDairy/Milk-products.jpg\" />"))
但是在执行时,导航路径的代码更改为Home / productListView。为什么以及如何维护我指定的路径?
答案 0 :(得分:0)
<a href="@Url.Action("Productlistview", "Product", new { categoryid = 1 })">
<img src="/Content/ImagesDairy/Milk-products.jpg" />
</a>