Reputation: 173
I have a couple of AutocompleteExtenders in some pages, now I want to do 2 things with them:
I was checking out the AutocompleteExtender reference, and found two properties of interest: OnClientItemSelected and OnClientShown but don't know how to accomplish what I want (above) with these.
Upvotes: 0
Views: 117
Reputation: 3289
You'd use OnClientItemSelected to call a JavaScript function that could read the extended TextBox's value, then does something with that value (like write it to another input as you suggest). That would be 2.
As for 1, there are a few options:
Upvotes: 1