除了视图之外,如何使用 MVCContrib 库中的 PortableAreas 处理其他内容?

发布于 2024-08-28 04:31:17 字数 314 浏览 11 评论 0原文

我看过类似 ASP.Net MVC 可移植区域 - 第 2 部分 指示视图的构建操作必须设置为嵌入式资源

其他内容(例如图像和 CSS)怎么样?它们也应该设置为嵌入式资源吗? PortableArea ViewEngine 也会提取该内容吗?

I have seen blog entries like ASP.Net MVC Portable Areas - Part 2 that indicate that the build action for views must be set to Embedded Resource.

What about other content such as images and CSS? Should they be set to Embedded Resource as well? Will the PortableArea ViewEngine pull that content out as well?

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

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

发布评论

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

评论(1

溺深海 2024-09-04 04:31:17

编辑:

只要您的图像/css/脚本被标记为嵌入式资源并遵循以下约定:

> Areas
    > AreaName
        > Content
            > Styles
               Site.css
            > Images
               myImage.jpg
            > Scripts
               site.js

您可以免费获得它!生成的到嵌入资源的路由是:

~/AreaName/Styles/Site.css
~/AreaName/Images/myImage.jpg
~/AreaName/Scripts/site.js

EDIT:

As long as your images/css/scripts are marked as Embedded Resources and follow the following convention:

> Areas
    > AreaName
        > Content
            > Styles
               Site.css
            > Images
               myImage.jpg
            > Scripts
               site.js

You get it for free! The routes generated to the embedded resources are:

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