I am an untrained volunteer seekeing help.
I have several input pages where I autopostback is marked "True", when I enter the data or select the entry. The page flashes a losses its normal tab sequence. How can I mainatin teh Tab Sequence (focus)?
Exmaples
or
Thank you for your help in advance.
Billie
I have several input pages where I autopostback is marked "True", when I enter the data or select the entry. The page flashes a losses its normal tab sequence. How can I mainatin teh Tab Sequence (focus)?
Exmaples
Code:
<asp:DropDownList id="DropDownListq1" runat="server" DataSourceID="SqlDataSource1" DataTextField="True-False" DataValueField="True-False" AutoPostBack="True" OnSelectedIndexChanged="DropDownListq1_SelectionChanged" ></asp:DropDownList>
Code:
<asp:TextBox id="TextBoxPlayFname" runat="server" AutoPostBack="true" OnTextChanged="TextBoxPlayFname_TextChanged" AutoCompleteType="Disabled" ></asp:TextBox>
Billie
Comment