在ASP.NET MVC 3.1 C#中,按照ID获取列行可以通过以下步骤实现:
public ActionResult GetRowById(int id)
{
// 在这里编写获取列行的逻辑
return View();
}
<table>
<thead>
<tr>
<th>列1</th>
<th>列2</th>
<th>列3</th>
</tr>
</thead>
<tbody>
@foreach (var row in Model)
{
<tr>
<td>@row.Column1</td>
<td>@row.Column2</td>
<td>@row.Column3</td>
</tr>
}
</tbody>
</table>
routes.MapRoute(
name: "GetRowById",
url: "row/{id}",
defaults: new { controller = "YourController", action = "GetRowById" }
);
<a href="@Url.Action("GetRowById", "YourController", new { id = 1 })">获取列行</a>
这样,当用户点击链接时,将会触发"GetRowById"方法,并通过ID参数获取相应的列行数据,并将其显示在视图中。
请注意,以上代码仅为示例,你需要根据你的具体需求进行适当的修改和调整。另外,关于ASP.NET MVC的更多详细信息和用法,请参考微软官方文档:ASP.NET MVC。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云