Hi Guys,
inside my textbox, i create 2 event, there is : onkeyup & on OnTextChanged.
onkeyup use for add comma when user entry amount, eg: (1,999,00)
OnTextChanged use for sum total amount.
i wrote both of them in the same textbox, why OnTextChanged event not work ?
my question is : how to runs textchanged event & onkeyup, onkeypress javascript at the same time ?
and this is my code :
<asp:TextBox ID="TextBoxEditPrice" Width="80px" onkeyup="javascript:this.value=Comma(this.value);"
OnTextChanged="autosum" autopostback="true" runat="server" Style="text-align: right;" MaxLength="40" />
Public Function autosum()
l_inwords.Text = "total"
end function
Regards.
Bertanya.
...
Go to the complete details ...