I have a simple text box where I am trying to enable autocomplete.
Example:

Works great on Chrome, not IE.
I even changed the settings in IE and turned on autocomplete. But still there are no changes.
Here is the code for the text box inside the div tag.
<asp:TextBox runat="server" ID="txtSender" CssClass="span8 input-large"
ClientIDMode="Static" MaxLength="255" AutoCompleteType="FirstName"/>
Can anyone ask what could be causing this?
source
share