如何在 Kendo-UI 的@html.raw 链接中发送数据

问题描述 投票:0回答:0

我有一行代码用于自定义按钮页面@html.raw,我想将 id 发送到我想要的 url 但是当我检查调试数据时,出现的是字符串数据,而不是 id = 1 或 2或 3 ..,而是出现字符串 #:data.Id#

index.cshtml

columns: [
{
    field: "Name",
    title: "Name",
},
{
    title: "Action",
    width: 200,
    template: `@Html.Raw(@Helper.Link("<i class='fa fa-pencil-alt'></i>", new Dictionary<string, string>{{"url","/FamilyCause/Update"},{"id", "#:data.Id#" } }))`,
},
],
c# asp.net kendo-ui
© www.soinside.com 2019 - 2024. All rights reserved.