我在kendo网格中使用模板,但看到错误
SyntaxError:expect expression,got'&'
模板:< a href =" / Home / ClientProfile_GeneralData?长度= 11& q
columns: [
{ field: "Id", title: "id" },
{
field: "Name", title: "Product Name",
Template:@Html.ActionLink("#= Name #", "ClientProfile_GeneralData", "CrmCProfile",
null
).ToHtmlString();
{
title: "Action",
template: "<a href='http://www.sample.com/'>Edit</a>"
},
答案 0 :(得分:1)
我遇到了类似的问题,而不是Html.ActionLink我使用了<a>
标记和Url.ActionLink助手。
这是我的示例代码:
columns: [{
field: "ContactName",
title: "Contact Name",
template: "<a href='@Url.Action("Details", "Home")/#=CustomerID#'>#= CompanyName #</a>"
}]