在ASP.NET MVC中打印表格行可以通过以下步骤实现:
<table>
<thead>
<tr>
<th>列1</th>
<th>列2</th>
<th>列3</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<td>@item.Column1</td>
<td>@item.Column2</td>
<td>@item.Column3</td>
</tr>
}
</tbody>
</table>
window.print()
方法来实现打印功能。<button onclick="window.print()">打印</button>
@media print {
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
}
}
public ActionResult Index()
{
var data = GetDataFromDatabase(); // 从数据库获取数据
return View(data);
}
以上是在ASP.NET MVC中打印表格行的基本步骤。根据具体需求,你可以进一步定制打印样式、添加页眉页脚等功能。
领取专属 10元无门槛券
手把手带您无忧上云