Here's my current situation:
I have an OnTextChanged
event handler on my ASPX page that calls the TextChanged()
method from the code-behind. I now need to include a JavaScript script at the conclusion of the TextChanged()
method. How can I achieve this? Is there a way for the ScriptManager
to specifically execute scripts only when the text in my textbox changes?
This may be a repeated question, but I couldn't find any information on whether the ScriptManager possesses methods that will run a script immediately after it is registered.
The main issue here is that I must insert a script at the end of the TextChanged() method that simply shifts focus from one HTML element to another.