自动建议渲染问题
我当前运行的 .net 应用程序遇到问题。我们使用与城市文本框关联的自动完成扩展器控件来选择城市。由于互联网连接速度较慢,当用户使用此部分渲染的应用程序时,不会建议输入城市(以红色突出显示)。
我使用 Page_Init 事件首先禁用文本框,然后在 Page_Load 上启用它,但它不起作用(以防止用户在页面未完全加载时输入文本)。
有什么办法可以解决这个问题吗?
加载成功后,
I have an issue in our currently running .net application. we are using autocomplete extender control associated with city textbox for city selection. Due to slow internet connection, when user uses this application with partially rendered, it is not suggesting for entered city (highlighted in red).
I have used Page_Init event for first disable the textbox, than enable it on Page_Load, but it's not working (to prevent user for enter text when the page is not loaded completely).
Is there any solution to overcome this problem?
After loaded successfully,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么您想在页面加载之前禁用文本框吗?我不确定它是否会像您想要的那样工作,但您是否考虑过使用 jQuery 来禁用文本框?例如此处,此处,此处
So you want to disable the textboxes until the page has loaded? I am not sure if it will work like you want but have you considered using jQuery to disable the textbox? For example here, here, here