MVC部署IIS 7相对路径

发布于 2024-12-08 03:17:55 字数 104 浏览 0 评论 0原文

我尝试将 mvc 应用程序部署到 IIS7,但是当我运行我的网站时,它没有加载图像和 css,但是当我在与 iisexpress 集成的 vs2010 中运行我的网站时,工作正常。有什么问题吗?

I'm try deploy mvc application to IIS7 but when I run my site it no load imagens and css, but when I run my site in vs2010 integrated with iisexpress work fine. What's the problem?

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

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

发布评论

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

评论(1

好菇凉咱不稀罕他 2024-12-15 03:17:55

您已经在视图中对这些 CSS 文件的位置进行了硬编码,而不是使用 URL 帮助程序,不是吗?

您在您的观点中写道:

<link href="/Content/Site.css" rel="stylesheet" type="text/css" />

而不是:

<link href="<%= Url.Content("~/Content/Site.css") %>" rel="stylesheet" type="text/css" />

You have hardcoded locations to those CSS files in your views instead of using URL helpers, haven't you?

You wrote in your view:

<link href="/Content/Site.css" rel="stylesheet" type="text/css" />

instead of:

<link href="<%= Url.Content("~/Content/Site.css") %>" rel="stylesheet" type="text/css" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文