Auto IE does not work for asp.net text box.

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

Example:

Auto complete working

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?

+4
source share
1 answer

In Internet Properties (Options → Content → AutoFill), try “Delete AutoFill History.”

0
source

Source: https://habr.com/ru/post/1539032/


All Articles