I have only one text box per page. For this text box, I have the text change text box in the code behind. Since this is the only element on the page, it only starts after the user enters the input and the user presses the space bar. Is there a hack that I could use to make a text change event in the text if it lost focus, and not the user's run button?
<asp:Textbox Id="txtInputID" runat="server" TextChanged="ReadWriteTB_TextChanged" /> private void ReadWriteTB_TextChanged(object sender, RoutedEventArgs e) {
Update. I am using jquery autoload for this text box. Not sure if this forces the user to press the spacebar.
source share