从 CodeBehind 跳转到锚点,无需重新发布

发布于 2024-08-14 16:05:19 字数 84 浏览 4 评论 0原文

有没有办法在不使用 Response.Redirect() 的情况下将代码隐藏中的锚点 (test.aspx#23432) 附加到地址栏中当前位置的末尾?

Is there a way to append an anchor (test.aspx#23432) in the codebehind to the end of my current location in my address bar without using Response.Redirect()?

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

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

发布评论

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

评论(1

弥枳 2024-08-21 16:05:19

一旦您进入代码隐藏状态,您就已经处于重新发布状态,所以简短的答案是否定的。您可以将按钮/链接更改为常规 html 控件,该控件附加锚点而无需进行回发

<a href="#23432">Click Here</a>

Once you are in your code behind, you are already in a repost, so the short answer is no. You can change your button/link to a regular html control that appends the anchor without doing a postback

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