使用 ASP.NET 跳转到不同页面的内容位置
有谁知道如何从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
锚标记适用于
.html
之外的其他文件格式。任何呈现为
html
内容的文件都可以使用锚标记。因此,您的链接可以是:
然后,只要呈现的
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:
Then as long as there is an element on the rendered
yoursite.aspx
content with IDjumpHere
, the browser will "jump" to that element.