There was the same problem in FireFox.
I set the attribute on the OnPreRender page. (in my case usercontrol)
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
txtAutoComplete.Attributes.Add("autocomplete", "off");
}
Now it works like in IE.
Great!!
source
share