Is there a OnExit or Leave event on ASP.NET textbox?
What about the Textchanged Event
of the Textbox? It is fired when we input/change some text and then leave the textbox.
The TextBox has an AutoPostBack property to cause a postback when the user leaves the client-side textbox. There you can use the TextChanged event to call some serverside code.