我在我的MVC Demo应用程序中使用WebGird,我正在尝试在WebGrid中使用ActionLink,我该如何使用它?
查看: -
@model IEnumerable<RotationManager.Models.tableCustomer_M>
@{
WebGrid listGrid = new WebGrid(Model);
}
@listGrid.GetHtml(tableStyle: "table", footerStyle: "foot",
columns: new[]{
listGrid.Column("Customer_Id",format: (item) => Html.ActionLink(item.Customer_Id, "Edit",new {@id=item.Customer_Id},null))
})
上面的代码行不起作用。
请帮助我!
任何帮助将不胜感激!
答案 0 :(得分:3)
@listGrid.GetHtml(tableStyle: "table", footerStyle: "foot",
columns: new[]{
listGrid.Column(header: "Customer_Id", format: item => new HtmlString(
Html.ActionLink((string)item.Customer_Id.ToString(),
"Edit", new { @id = item.Customer_Id} ).ToString()))
})