Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在任何地方都找不到答案,但我最终得到了下面描述的解决方案。
如果有人知道“更好”的方法......
注意 html 字符串中的双引号!
.Columns(column => { column.For(m => Html.Raw( string.Format( @"<a href=""{0}""><i class=""fa fa-pencil-square""></i></a>", Url.Action("EditItem","MyController", new { id = m.id }) ) ) ); })