Strange behaviour of Dropdownlists..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

We have an application page that has several dropdownlists on it. Data entered by the user is extracted from these dropdownlists is being stored in a MS SQL database.

The problem is that the page works fine 99% of the time. However, there have been cases where the selection on all dropdownlists has been reset to the first item on the list. We have not been able to reproduce this error on our development environment, but the error continues to occur, albeit rarely.

Any inputs on this matter is greatly appreciated.

Thanks and Regards,
Vamshi
 
if any of the dropdowns are set for postback, you will have trouble if the
user uses the keyboard for entry (uparrow, drownarrow). you need to add
client code to disable the dropdown until the postback has completed.


-- bruce (sqlwork.com)


Vamshi said:
Hi All,

We have an application page that has several dropdownlists on it. Data
entered by the user is extracted from these dropdownlists is being stored in
a MS SQL database.
The problem is that the page works fine 99% of the time. However, there
have been cases where the selection on all dropdownlists has been reset to
the first item on the list. We have not been able to reproduce this error on
our development environment, but the error continues to occur, albeit
rarely.
 
Back
Top