为什么用户控件中的asp:HyperLink.NagigateUrl,放置在子文件夹中,包含这个子文件夹?

发布于 2024-08-19 21:44:19 字数 675 浏览 2 评论 0原文

~/Folder1/UserControl1.ascx:

<%@ Control Language="C#" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication1.WebUserControl1" %>
<asp:HyperLink runat="server" NavigateUrl="?foo=bar">HyperLink1</asp:HyperLink>

~/UserControl2.ascx:

<%@ Control Language="C#"CodeBehind="WebUserControl2.ascx.cs" Inherits="WebApplication1.WebUserControl2" %>
<asp:HyperLink runat="server" NavigateUrl="?foo=bar">HyperLink2</asp:HyperLink>

结果:

http://localhost/Folder1/?foo=bar

http://localhost/?foo=bar

为什么会发生这种情况?

~/Folder1/UserControl1.ascx:

<%@ Control Language="C#" CodeBehind="WebUserControl1.ascx.cs" Inherits="WebApplication1.WebUserControl1" %>
<asp:HyperLink runat="server" NavigateUrl="?foo=bar">HyperLink1</asp:HyperLink>

~/UserControl2.ascx:

<%@ Control Language="C#"CodeBehind="WebUserControl2.ascx.cs" Inherits="WebApplication1.WebUserControl2" %>
<asp:HyperLink runat="server" NavigateUrl="?foo=bar">HyperLink2</asp:HyperLink>

Result:

http://localhost/Folder1/?foo=bar

http://localhost/?foo=bar

Why does it happen?

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

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

发布评论

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

评论(2

氛圍 2024-08-26 21:44:19

当路径开头没有 / 或 ~ 时,它被视为相对于当前位置。

对于用户控件,当前位置是控件的位置。

WHen you do not have a / or ~ at the beginning of the path, it is considered relative to the CURRENT position.

From a user control, current position is the position of the control.

友谊不毕业 2024-08-26 21:44:19

这些链接是相对于用户控件的目录进行解析的,它们实际上调用 ResolveClientUrl(); 内部,因此您会看到相同的行为。

来自MSDN的描述:

此方法返回的 URL 相对于包含实例化控件的源文件的文件夹。继承此属性的控件(例如 UserControl 和 MasterPage)将返回相对于该控件的完全限定 URL。

在代码隐藏中使用 Page.ResolveClientUrl() 解析 url 将解决该问题。

The links are resolve relative to the directory of the user control, they actually call ResolveClientUrl(); internally, so you see this same behavior.

Description from MSDN:

The URL returned by this method is relative to the folder containing the source file in which the control is instantiated. Controls that inherit this property, such as UserControl and MasterPage, will return a fully qualified URL relative to the control.

Resolving the urls with Page.ResolveClientUrl() in the code-behind will solve the problem.

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