Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 RazorEngine 库为我的应用程序中的 PDF 生成创建模板。RazorEngine 允许我在正常的 asp.net Web 上下文之外使用 Razor。
如何创建可以重复使用的共享/通用 .cshtml 文件?例如页脚模板。由于我的页脚对于我的大多数 PDF 看起来都是一样的,我希望有一个可以调用的通用页脚模板。
如何使用 RazorEngine 执行此操作?
制作“footer.cshtml”作为局部视图。然后调用它@Html.RenderPartial("footer").
@Html.RenderPartial("footer").