使用 ASP.NET 跳转到不同页面的内容位置

发布于 2024-09-28 04:38:31 字数 200 浏览 1 评论 0原文

有谁知道如何从 ASP 中另一个页面上的 href 链接跳转到内容位置?

我理解下面显示的锚点概念,但这仅适用于 html,不适用于 ASP

<a href="yoursite.html#jumpHere">link</a>

Does anyone know how to jump to the content location from a href link on another page in ASP?

I understand the anchor concept shown below, but this only works with html not ASP.

<a href="yoursite.html#jumpHere">link</a>

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

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

发布评论

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

评论(1

屌丝范 2024-10-05 04:38:32

锚标记适用于 .html 之外的其他文件格式。

任何呈现为 html 内容的文件都可以使用锚标记。

因此,您的链接可以是:

<a href="yoursite.aspx#jumpHere">link</a>

然后,只要呈现的 yoursite.aspx 内容中存在 ID 为 jumpHere 的元素,浏览器就会“跳转”到该元素。

Anchor tags work with other file formats than .html.

Any file which is rendered as html content, can use anchor tags.

Therefore, your link could be:

<a href="yoursite.aspx#jumpHere">link</a>

Then as long as there is an element on the rendered yoursite.aspx content with ID jumpHere, the browser will "jump" to that element.

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