I am using an ASP.NET update panel to retrieve user info using the on TextChanged for the textbox, here is my code:
AutoPostBack on text-box will trigger post-back when the focus is lost from the text box. TextChanged
event will be fired on any subsequent post-back (can be due to button-click or text box focus change). So you need to make certain
My guess is you are probably suffering from #2. You can use tool such as Fiddler (or Firebug on FireFox) to check if browser is firing AJAX (XHR) request when the focus is lost from the text-box.