この Web グリッドのアクション リンクを画像に変更するにはどうすればよいですか? ps: すべての画像を同じ列に表示したい
@{
var grid = new WebGrid(Model, canPage:true ,canSort:true, rowsPerPage :6);
grid.Pager(WebGridPagerModes.NextPrevious);
@grid.GetHtml(tableStyle: "webGrid", htmlAttributes: new { id = "datatable" },
headerStyle: "Header",
alternatingRowStyle: "alt",
columns: grid.Columns(grid.Column(header: "", format: (item) =>
new HtmlString(
Html.ActionLink("Détails", "Details", new { id = item.id_client }).ToString() +
Html.ActionLink("Modifier", "Edit", new { id = item.id_client }).ToString() +
Html.ActionLink("Supprimer", "Delete", new { id = item.id_client }).ToString()
), style: "actions"),
grid.Column("Nom"),
grid.Column("Prenom", "Prénom"),
grid.Column("Email")));
}