目前我的数据显示在这样的行中
第 1 项 第 2 项 第 3 项 第 4 项 第 5 项
我使用以下代码得到这个结果
@using SportsStore.Models.WebUI
@model SportsStore.Models.ProductsListViewModel
@{
ViewBag.Title = "Products";
}
<div style="padding-left: 300px;">
<table style="height: 300px; border: 2px; border: 1px solid Red;">
<tr>
@foreach (var p in Model.Products)
{
<td style="height: 100px; width: 150px; border: 2px">
<a href="@Url.Action("Detail", "Product",
new { id = p.ProductID })">
<img alt="@p.ProductDescription" src="@p.Imagename" width="150" height="150"/>
<br />
Name : @p.ProductDescription<br />
Price : <span>@p.RetailPrice</span> </a>
</td>
}
</tr>
</table
</div>
我想显示我的数据
第 1 项 第 2 项 第 3 项 第 4 项 第 5 项
第 6 项 第 7 项 第 8 项 第 9 项 第 10 项
请帮我
提前致谢