0

我在任何地方都找不到答案,但我最终得到了下面描述的解决方案。

如果有人知道“更好”的方法......

4

1 回答 1

0

注意 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 })
            )
        )
    );
 })
于 2016-08-17T12:40:21.647 回答