0

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?

enter image description here

After loaded successfully,

enter image description here

Zoe
  • 27,060
  • 21
  • 118
  • 148
Sujit
  • 3,677
  • 9
  • 41
  • 50

1 Answers1

1

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

Community
  • 1
  • 1
Ashok Padmanabhan
  • 2,110
  • 1
  • 19
  • 36
  • 1
    or just show a message in the middle of the dialog, that still loading, and the message go way when its fully loaded. – Aristos Nov 22 '11 at 13:11