You cannot use @RenderPartial in Dynamicweb Razor templates, but you can use @IncludeFile(string), e.g. @IncludeFile("Partials/Navigation.cshtml") to include another file in your template. All @IncludeFiles are expanded, i.e. replaced by the content of the included file, before Razor is processing the template.