In my web form I have a Textbox
control. The TextChanged
event of the Textbox
is not triggering.
AutoPostBack
is set to true
What could be the reason for this? Here is the code:
protected void Textr_TextChanged(object sender, System.EventArgs e)
{
}
<asp:TextBox ID="Textr" TabIndex="10" Style="z-index: 117; left: 500px;
position: absolute; top: 158px" runat="server" Height="22px" Width="180px" MaxLength="50"
AutoPostBack="True" CausesValidation="true" OnTextChanged="Textr_TextChanged"
></asp:TextBox>