单独项目中的 asp.net 静态内容。现在如何参考?

发布于 2024-11-09 14:31:00 字数 187 浏览 0 评论 0原文

Project1.csproj 是网站项目,StaticContent.csproj 是静态内容项目,用于保存所有 .css、.js 和图像文件。我将其分开,以便设计人员可以在不接触主项目文件的情况下工作,并且将来可能会使用 cdn。但问题是我的 .ascx 和 .aspx 页面如何引用这些 css 和 js 文件,因为当我在本地主机中运行时,它仍然会启动。

Project1.csproj is the website project and StaticContent.csproj is the static content project to hold all .css, .js and image files. I am keeping it separate so that designers can work without touching the main project file and may be use cdn in future. But the problem is how do my .ascx and .aspx pages will refer to these css and js files as that when I run in localhost, it still picks up.

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

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

发布评论

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

评论(1

醉生梦死 2024-11-16 14:31:00

我认为最好的方法是在 IIS 中为 Static 项目创建一个网站,并通过另一个网站上的 static.myproject.com(具有适当的设置)之类的内容引用它。

您仍然可以在 Project1 上使用 Webdevserver。

与部署时最相似,您可以将 URL 放在 web.config 上以便于更改

I think the best way is you create a website in IIS for the Static project, and reference it trough something like static.myproject.com (having the appropiate setup) on the other one.

You can still use Webdevserver on Project1.

Is most like what you will have when deploy, and you can put the URL on web.config for easy change

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