如何将css类应用到根文件夹?

发布于 2024-08-20 19:26:38 字数 74 浏览 6 评论 0原文

我该如何将 Css 类应用到我的 mvc 应用程序的根文件夹。因为当应用程序没有给出控制器的名称和启动操作时,它不会显示图像和 css

How shall I apply Css Class to the root folder of my mvc application.Because when the application is not given the name of the controller and the start action it is not displaying the images and the css

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

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

发布评论

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

评论(1

走过海棠暮 2024-08-27 19:26:38

我认为您指的是标题中链接标记内的引用?

如果是这种情况,我认为最好的解决方案是使用 Url.Conent,这样您的链接标记将类似于:

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

这样,无论用户查看的 url 是什么,对样式表的引用始终是正确的。

I think your referring to the reference within link tag in your header?

If this is the case the best solution in my opinion is to use Url.Conent so your link tag will look something like:

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

That way no matter what the url the user is viewing the reference to the style sheet is always correct.

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