hello,
i have this update panel inside which i have 2 textbox on textbox event change i have logic applying which works fine.
the problem after typing on txtofferate and user press tab user go on next texbox but partial postback is running and focus on next textbox auto disappear.
i want focus should not disapper after partial post back.
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox ID="txtofferrate" runat="server" AutoCompleteType="Disabled" OnTextChanged="txtofferrate_TextChanged" AutoPostBack="True"></asp:TextBox>
<asp:TextBox ID="txtweight" runat="server" AutoCompleteType="Disabled" OnTextChanged="txtweight_TextChanged" AutoPostBack="True"></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
protected void txtofferrate_TextChanged(object sender, EventArgs e)
{
twodecimalcheck(txtofferrate.Text, RegularExpressionValidator4);
ddlcurrencyvisible();
}