如何从razor中的gridview列获取span类值,并希望在textbox中显示此span类值

时间:2013-09-06 05:49:03

标签: asp.net-mvc-3 razor

grid.Column(columnName: "groupName", header: "Group Name", style: "HD-td-width-col", 
format:span class="@item.groupId  groupname">@item.groupName /span),

我正在使用java脚本,但我没有获得span类值.......

1 个答案:

答案 0 :(得分:0)

您的代码中遗漏了一些<>。请尝试使用以下代码。

grid.Column(
    columnName: "groupName", 
    header: "Group Name", 
    style: "HD-td-width-col", 
    format: @<text>
                 <span class="@item.groupId  groupname">@item.groupName</span>
             </text>),