I have a textbox with an onchange event. Why does this event not fire when the user uses the autocomplete feature to populate the textbox?
I am working with Internet
I just turn Autocomplete off for the text boxes I need to fire a text change event
'Turn off Auto complete
'(it needs to fire the text change event)
txtYourTextBox.Attributes.Add("AutoComplete", "off")
Just put that in the page load.
Alternately, you can add the attribute to your markup on the input
element or the entire form
:
or