ASP.NET 文本框:OnTextChange 由于自动回发而跳转到页面顶部
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 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>
在
page_load
事件中编写以下代码。In the
page_load
event write below code.