如何在Javascript语句中使用c#代码?
这是我的代码:
document.getElementById('part1').innerHTML = '' +
'@Html.Partial("SelectCustomer.Views")'
' Views';
@Html.Partial("SelectCustomer.Views")
以及<%=
和%>
不起作用
答案 0 :(得分:1)
@Html.Raw("document.getElementById('part1').innerHTML = '' +
@Html.Partial("SelectCustomer.Views")
' Views';");
手头没有剃刀项目来测试它。可能需要从第二个Html中删除@。