asp.net-mvc-3 – 列中的MVC3 WebGrid自定义文本

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 列中的MVC3 WebGrid自定义文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用VB.NET中的MVC3开发一个Web应用程序.

我在使用以下操作链接在webgrid上设置列时遇到困难

编辑|细节|删除

@H_403_6@@*@Html.ActionLink("Edit","Edit",New With {.id = currentItem.PrimaryKey}) | @Html.ActionLink("Details","Details",New With {.id = currentItem.PrimaryKey}) | @Html.ActionLink("Delete","Delete",New With {.id = currentItem.PrimaryKey})*@

我试图使用下面的语法,但我得到一个错误,其中未声明项目.

grid.Column(header:=“”,format:=(item)=> item.GetSelectLink(“Custom Text”))

如何引用webgrid中的当前行或项目以使其工作?

任何帮助非常感谢.

问候

詹姆士

@H_404_20@

解决方法

@H_403_6@grid.Column( columnName:"PrimaryKey",header:"Actions",format: (item) => { var links = Html.ActionLink("Edit",new {id = item.PrimaryKey}) + " | " + Html.ActionLink("Details",new { id = item.PrimaryKey}) +" | "+ Html.ActionLink("Delete",new { id = item.PrimaryKey}); return Html.Raw(links); }),

呈现以下HTML(格式化为易读性)

@H_403_6@<td> <a href="/Home/Edit/5">Edit</a> | <a href="/Home/Details/5">Details</a> | <a href="/Home/Delete/5">Delete</a> </td> @H_404_20@ @H_404_20@ 原文链接:https://www.f2er.com/aspnet/251715.html

猜你在找的asp.Net相关文章