Is Response.Write() working with Razor?
Is Response.Write() working with Razor?
开发者_JS百科I tried to use @Html.RenderAction
but I'm getting the error:
CS1502: The best overloaded method match for
'Microsoft.WebPages.WebPageUltimateBase.Write(Microsoft.WebPages.Helpers.HelperResult)'
has some invalid arguments
This is the correct syntax:
@{Html.RenderAction("Index", "Menu");}
Or just using Action:
@Html.Action("Index", "Menu")
精彩评论