Sitecore View Rendering and Controller Rendering Helper
问题 I have a sitecore application that use this method : @Html.Sitecore().ViewRendering("Path to the View") @Html.Sitecore().Controller("Controller Name", "Controller Action") This works perfectly fine even without I create an item for that rendering in Sitecore CMS Then what is the difference between that method with simple ASP MVC method : @Html.Partial("Path to the View") @Html.Action("Controller Name", "Controller Action") Both same or not? I feel little confused here 回答1: @Html.Sitecore()