刷新更新面板如果用户当时正在写入,我会遇到问题
我正在尝试使用 ajax 控制工具包进行网络聊天。有一个脚本管理器、更新面板和计时器。
我插入了文本框来显示用户引入的每条文本,用于书写的文本和发送按钮都已消失。它工作得很好,但如果我在刷新时间的确切时刻写一些文本(绞车发生很多,因为它每 3 秒一次),它不会让我正确书写,导致文本框闪烁,你会错过一个字母。因此,这是在不损失写作流畅性的情况下执行此操作的正确方法。
谢谢。
Im trying to make a web chat using ajax control tool kit. There is a script mannager, the update panel and the timer.
I inserted the textbox for showing every text that is introduced by the users, the text for writing and the send button are out. It works great but if im writing some text in the exact moment of refreshing time (winch happends a lot because its every 3 sec) it does not let me write correctly cause the textbox kind of blink and you miss a letter. So, wich is the correct method for doing this without lossing the fluidity of the writing.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您创建 2 个文本框:一个用于输入,另一个用于输出。用于输入的应该放置在更新面板之外,因此它永远不会被刷新。此外,您还需要添加此文本框或其发送按钮作为更新面板的触发器。与此类似 示例
这是我尝试过的代码,它有效:
Aspx:
和 C#:
I would suggest you to create 2 textboxes: one for input and anther for output. The one for input should be placed outside the update panel, so it never will be refreshed. Also you will need to add this textbox or its send button as a trigger to your update panel. Similar to this example
Here is the code I tried and it works:
Aspx:
And C#: