如何在参数值中仅使用相对路径?

发布于 2024-11-09 08:38:41 字数 545 浏览 0 评论 0原文

<param name="source" value= "/ClientBin/Gantt_SL1.xap"/>

这涉及 HTML 标记和 Silverlight。基本上在标记中我有上面的行。我想做的是在整个标记中使用这个相对路径。我在其他子文件夹中有不同的网页,也引用了此 SL xap。然而,当我想使用它时,我必须做这样的事情:

<param name="source" value= "../ClientBin/Gantt_SL1.xap"/>

我不必担心必须在路径前面放置多少个“../”以确保它得到解决。是否有 .NET、Javascript 或 JQuery 方法允许我使用根目录、子文件夹、子文件夹的子文件夹中的相对路径,而无需执行整个“../”业务?像这样的东西:

//from some library
<param name="source" value= ResolveFullPath("/ClientBin/Gantt_SL1.xap")/>
<param name="source" value= "/ClientBin/Gantt_SL1.xap"/>

This involves HTML markup and Silverlight. Basically in the markup I have the line above. What I would like to do is use this relative path throughout my markup. I have different web pages in other sub folders that also reference this SL xap. When I want to use it however, I have to do something like this:

<param name="source" value= "../ClientBin/Gantt_SL1.xap"/>

I rather not have to be worrying about how many "../" I have to put in front of a path to make sure it gets resolved. Is there a .NET, Javascript, or JQuery method that allows me to use the relative path in the root, sub-folder, sub-folder of a sub-folder without doing the whole "../" business? Something like:

//from some library
<param name="source" value= ResolveFullPath("/ClientBin/Gantt_SL1.xap")/>

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

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

发布评论

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

评论(1

许你一世情深 2024-11-16 08:38:41

您可以使用 ResolveUrl:

<param name="source" value='<%= ResolveUrl("~/ClientBin/Gantt_SL1.xap")%>' />

You can use ResolveUrl:

<param name="source" value='<%= ResolveUrl("~/ClientBin/Gantt_SL1.xap")%>' />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文