Response.Write()是否与Razor一起使用?
我尝试使用@Html.RenderAction
,但我收到错误:
CS1502: The best overloaded method match for
'Microsoft.WebPages.WebPageUltimateBase.Write(Microsoft.WebPages.Helpers.HelperResult)'
has some invalid arguments
答案 0 :(得分:22)
这是正确的语法:
@{Html.RenderAction("Index", "Menu");}
或者只是使用动作:
@Html.Action("Index", "Menu")