整理我的Site.Master

发布于 2024-10-12 19:49:30 字数 650 浏览 3 评论 0原文

所以我谈论的是 Asp.net mvc2 应用程序中的链接,其中您有一个站点管理员。

特别是,我的 Site.Master 引用了 jQuery,如下所示:

<head runat="server">
    <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
    <script type="text/javascript" src="../../Scripts/jquery-1.4.1.js"></script>

但是你瞧,正如我刚刚注意到的,这个 obv 不起作用,例如

http://localhost:xxxx/

http:// localhost:xxxx/this/no/longer/refs/ Correct/spot

无论页面如何嵌套,如何引用正确的文件夹?

干杯

So I am talking about links in a Asp.net mvc2 application, where you have a site master.

In particular, my Site.Master references jQuery, like so:

<head runat="server">
    <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
    <script type="text/javascript" src="../../Scripts/jquery-1.4.1.js"></script>

But lo an behold, as I have just noticed, this obv isn't going to work e.g.

http://localhost:xxxx/

http://localhost:xxxx/this/no/longer/refs/correct/spot

How can I reference the correct folder regardless how nested the page is?

Cheers

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

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

发布评论

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

评论(1

我是男神闪亮亮 2024-10-19 19:49:30

在处理 url 时,您应该始终使用 url 助手:

<script type="text/javascript" src="<%= Url.Content("~/Scripts/jquery-1.4.1.js")"></script>

You should always use url helpers when dealing with urls:

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