私はmvc.netWebアプリケーションに取り組んでいます。Webグリッドを使用して、データベースのデータを表示しました。
@{
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>