Razor 新手,我在这里遗漏了一些简单的东西:
@foreach (var p in @Model)
{
<a href="/category/@Html.Display("CategoryID")" >
<img src="http://images.mydomain.com/productimages/@ViewData["ManufacturerID"]/category-@Html.Display("CategoryID")_lg.jpg?width=200&height=130" width="200" height="130" class="myImg" alt="" />
</a>
}
我只是想把CategoryID放在这里,上面的链接没有输出CategoryID的值。我在这里做错了什么?
我的模型已填充,因为我可以将其放入循环中并显示:@p.CategoryName