asp.net - OnTextChanged event not firing ONLY in deployed web forms app -


i've got webform textbox , submit button. when user changes textbox , clicks submit button (without tabbing out of textbox), ontextchanged event doesn't fire. happens when compiled app deployed; when running vs 2010 event fires should.

<asp:textbox id="textbox_balance_due_edit" runat="server" autopostback="true"  text='<%# eval("balance_due", "{0:#,##0.00}") %>'  style="text-align: right" width="80px" causesvalidation="true"   ontextchanged="textbox_balance_due_edit_textchanged" cssclass="style6" >  </asp:textbox><asp:button id="submitbutton" runat="server"  postbackurl="http://zzzzzz.asp" text="submit" /> 

code behind:

protected void textbox_balance_due_edit_textchanged(object sender, eventargs e) {     sumbalance(); } 

is configuration issue? i've tried variety of browsers.


Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -