Below is my code
<body>
<form id="form1" runat="server">
<div>
First name: <asp:TextBox ID="txtFirstName" runat="server" AutoCompleteType="FirstName"></asp:TextBox><br />
Last name: <asp:TextBox ID="txtLastName" runat="server" AutoCompleteType="LastName"></asp:TextBox><br />
</div>
</form>
The auto complete feature works fine with one textbox, but with > 1 textbox it does not work! Also, pressing enter when only 1 textbox is present refreshes the page, with > 1 textbox it does not.
Any reasons for this? From what I read online, this is by design or something. But I think there has to be some specific reason.
Thanks!
Go to the complete details ...