我正在开发一个 mvc .net Web 应用程序。我使用 webgrid 来显示我的数据库中的数据。
@{
var grid = new WebGrid(Model, canPage:true , rowsPerPage :6);
grid.Pager(WebGridPagerModes.NextPrevious);
@grid.GetHtml(tableStyle: "webGrid", htmlAttributes:
new {id="datatable" },headerStyle: "Header", alternatingRowStyle : "alt",
columns: grid.Columns(grid.Column("Nom"), grid.Column("Prenom"),
grid.Column("Email")));
}
我只想为每一行添加 3 个操作链接。怎么做。这是我的操作链接(我使用图像而不是文本)
<a href="@Url.Action( "Details", new { id = item.id_client })">
<img src="~/Images/details.png" alt =""/></a>
<a href="@Url.Action( "Edit", new { id = item.id_client })">
<img src="~/Images/modifier.png" alt =""/></a>
<a href="@Url.Action( "Delete", new { id = item.id_client })">
<img src="~/Images/supprimer.png" alt =""/></a>