ASP.NET 文本框:OnTextChange 由于自动回发而跳转到页面顶部

发布于 2025-01-05 22:43:26 字数 233 浏览 0 评论 0原文

我在 ASP.NET 页面上的文本框上使用 OnTextChange 事件。为了让这个工作正常,我必须输入'AutoPostBack=true'

问题在于文本框位于页面底部,当文本更改时,它必须填充另一个文本框。这工作正常,但是当事件触发页面时,页面刷新并跳转到页面顶部,所以我总是必须再次向下滚动才能看到它。 (由于自动回发)

我可以做些什么来防止它跳到页面顶部?

I'm using the OnTextChange event on a textbox on an ASP.NET page. To have this working I have to put 'AutoPostBack=true'.

The problem is that the textbox is on the bottom of the page, and when the text changes it has to fill another textbox. This is working fine but when the event triggers the page refreshes and jumps to the top of the page, so I always have to scroll down again to see it. (Due to the autopostback)

Is there anything I can do to prevent it to jump to the top of the page?

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

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

发布评论

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

评论(2

一城柳絮吹成雪 2025-01-12 22:43:26

使用 UpdatePanel 并将您触发 OnTextChange 事件的文本框放入 ajax 扩展中,并且不要忘记在页面顶部包含 scriptmanager
代码是这样的

<内容>


Use UpdatePanel and put that text box for which u r triggering OnTextChange event in of from ajax extensions and dont forget to include scriptmanager at top of the page
the code goes like this
<asp:UpdatePanel>
<content>
<asp:TextBox runat="server" AutoPostBack="true" OnTextChanged="textbox_textchanged">
</asp:TextBox>
</content>
</asp:UpdatePanel>

故事和酒 2025-01-12 22:43:26

page_load 事件中编写以下代码。

this.MaintainScrollPositionOnPostBack = true;

In the page_load event write below code.

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