如何默认链接始终指向母版页中的正确路径

发布于 2024-11-05 14:12:58 字数 788 浏览 0 评论 0 原文

我在这里面临一个问题,我在母版页中设置了一个链接,如下所示:

<a href="pgSummary.aspx" style="color:blue;padding:8px">Add/Eidt Summary</a>

当我在以下链接内时 http://www.test.com/smartStaff/ 它对我来说工作正常......但不知何故,如果我点击其他页面,例如 http://www.test.com/smartStaff/testfolder/pgOther.aspx,然后再次单击 Add/Eidt Summary 链接..它将引导我到 http://www.test.com/smartStaff/testfolder/pgSummary.aspx (我希望它会将我重定向到 http://www.test.com/smartStaff/pgSummary.aspx)。

有谁知道如何使路径链接始终指向正确的路径?

I'm, facing an issue here, I have set a link in the master page as below:

<a href="pgSummary.aspx" style="color:blue;padding:8px">Add/Eidt Summary</a>

when I'm inside the following link http://www.test.com/smartStaff/ it's working fine for me... but somehow if I click on other page like http://www.test.com/smartStaff/testfolder/pgOther.aspx, then clicked on the Add/Eidt Summary link again.. it will direct me to http://www.test.com/smartStaff/testfolder/pgSummary.aspx (which I expect it will redirect me to http://www.test.com/smartStaff/pgSummary.aspx).

Does anyone know how can I get the path link always direct to the right path?

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

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

发布评论

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

评论(2

っ左 2024-11-12 14:12:58

使用 ~/... 指定绝对路径,但是,您需要向标记添加 runat="server" 属性。

您还可以使用 HyperLink 控件(使用 runat="server")并将 NavigateUrl 属性设置为“~/...`。

此语法不适用于没有 runat="server" 的常规 标记,因为它不会被转换到您的根路径。

Specify an absolute path using ~/..., however, you'll need to add the runat="server" attribute to the tag.

You can also use a HyperLink control (with runat="server") and set the NavigateUrl property to "~/...`.

This syntax won't work in a regular <a> tag without runat="server" because it won't get translated to your root path.

南冥有猫 2024-11-12 14:12:58

您还可以使用Page.ResolveUrl。在你的情况下:

Page.ResolveUrl("~/smartStaff/pgSummary.aspx")

You can also use Page.ResolveUrl. In your case:

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