Hi, I am using below code.
And i have problem that onchange client-side method is working but ontextchange (server-side) source is not working.
how can i use "onchange" and "ontextchange" in textbox?
-----------------------------------------------------------------------------
<script type="text/javascript">
function Call_Date1_TextChanged(textbox_obj)
{
textbox_obj.defaultValue;
alert("changeTest");
return true
}
</script>
<asp:TextBox ID="TextBox1" AutoPostBack="true" runat="server" Text="1234" onchange="return Call_Date1_TextChanged(this);" ontextchanged="TextBox1_TextChanged" ></asp:TextBox >
Go to the complete details ...