I have an AutoCompleteExtender on a text box for Last Name, First Name, Unique ID.
I would like to make it so that users can only pick an item from the list and not type their own unique ID number. I can't use the AJAX ComboBox because the database I need to use is really large and I read that AutoCompleteExtender is best for use with large databases.
Any ideas how I could accomplish this? Javascript is the best option for me at this point. I'd prefer not to do it in the code behind. I've only found one example on this. I tried using an onblur="checkItemSelected(this)" with some Javascript but the problem is I am already using an onclientclick="alert('Your data has been SAVED!')" because this page is designed for a user to enter many names in the same screen and it's not cooperating.
Thanks so much for the help.