从类库加载部分内容

发布于 2024-07-17 06:44:16 字数 236 浏览 10 评论 0原文

有没有办法从类库加载部分视图?
我想从几个网站中提取公共部分,使它们更易于维护。

目前,我使用(例如)

<%Html.RenderPartial("~/Views/Search/_searchBlock.ascx", ViewData);%>

这是基于文件的来渲染我的部分,但是在创建类库时,会编译视图。 有没有办法加载在此库中编译的库?

Is there a way to load partial views from a class library?
I would like to pull out the common parts from several websites to make them easier to maintain.

Currently I render my partials with (for example)

<%Html.RenderPartial("~/Views/Search/_searchBlock.ascx", ViewData);%>

This is file based, but when creating a class library, the views are compiled.
Is there a way to load libraries that are compiled in this library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒芜了季节 2024-07-24 06:44:16

我认为做到这一点的唯一方法是使用 嵌入式资源 和自定义视图引擎。 将反射器(或下载 MVC 源)指向 System.Web.Mvc.Html.RenderPartialExtensions

The only way i can think to do this would be with embedded resources and a custom viewengine. Point reflector (or download the MVC soruce) at System.Web.Mvc.Html.RenderPartialExtensions

万水千山粽是情ミ 2024-07-24 06:44:16

请参阅 Phil Haacks 新帖子了解替代想法

See Phil Haacks new post for an alternative idea

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文