单独项目中的 asp.net 静态内容。现在如何参考?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最好的方法是在 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