23

This is happening on an asp.net webforms application, using Chrome Version 72.0.3626.109 (Official Build) (64-bit).

The site is password-protected. The user logs in with a username and password. After a successful login the user is redirected to the "Loan Search" page. The Loan Search page contains a handful of text inputs.

The problem is Chrome will autofill my username into one of the text inputs (see image). "tregan" is the username I entered into the login page.

enter image description here

Chrome always selects this particular text input to autofill the username ("Contact Mailing Address"). This is happening to myself and several dozen other users of our web site.

Any idea why Chrome is doing this autofill, and is there anything I can do to prevent it? I cleared my Chrome autofill cache, but that did not fix the problem.

Tom Regan
  • 2,850
  • 1
  • 33
  • 59
  • 2
    Chrome does this by default to try to help users fill out forms. You can control this in ASP by adding `autocomplete="off"` to your ASP:TextBox declaration or you can add it to your code-behind by doing `TextBoxID.Attributes.Add("autocomplete", "off");` – dvo Feb 15 '19 at 14:41
  • 2
    @dvo, I don't want to turn off auto-filling. I want Chrome to stop auto-filling my username into this particular field. It seems inexplicable. – Tom Regan Feb 15 '19 at 14:43
  • 1
    You can try to specify the AutoCompleteType for the field. For example, if you need an email field, you can do `` then Chrome should only autofill with cached emails. There are a lot of options for AutoCompleteType if you look at the VS intellisense. Give that a shot and see if that solves your problem. – dvo Feb 15 '19 at 14:47
  • Thanks @dvo, but that has no effect. I also Googled it and found a huge number of complaints that AutoCompleteType is ignored by Chrome. In any case I don't really want to turn off autofilling, I just want Chrome to stop autofililng my username into that particular input where it makes no sense. – Tom Regan Feb 15 '19 at 15:12
  • Interesting. Sorry that didn't help. I almost always just disable the autofill because I rarely have any need for it. I'll keep looking with you. Hope you can find an easy solution. – dvo Feb 15 '19 at 15:14
  • Please advise your users to report this issue to Google with Alt+Shift+I or `⋮→Help→Report an issue` to encourage Google Chrome to fix this issue. – oriadam Mar 14 '19 at 10:49

3 Answers3

18

The answer is to add an invisible text input to the asp.net form called "username".

Several years ago we were having the same problem with a different input. The answer was to add an invisible input of type "password", as explained in this SO answer, scroll down to the phrase "It is so simple and tricky...":

Disabling Chrome Autofill

Below is the complete fix, I added these two elements inside the form element in our site's master page. Per @Jeff_Mergler's comment below, put these inputs at the top of your form tag:

<input type="text" id="username" style="width:0;height:0;visibility:hidden;position:absolute;left:0;top:0" />
<input type="password" style="width:0;height:0;visibility:hidden;position:absolute;left:0;top:0" />
Tom Regan
  • 2,850
  • 1
  • 33
  • 59
  • 2
    Works! Note: this only worked when I placed the elements above at the very top of the form element before all other elements. It failed to work when placed them at the bottom so make sure to put them right below opening form tag. `
    `
    – Jeff Mergler Jun 14 '19 at 20:45
  • I can't believe we're having to do such messy workarounds like this just to prevent Chrome from autofilling a field. It's turned into such a horrible browser. – Gavin Apr 07 '21 at 12:25
1

Some more ways to try to workaround this:

  • Add autocomplete="off" to the <form> and/or to the <input>
  • Change the field's name/id to something that does not have "name" or "user" in it
  • If it is not already inside <form> wrap the element with empty <form> tag
  • Randomize the name attribute of the input, or use data-name instead of name. You'll have to change the code that process the data accordingly.

Also I think it'll help to report this issue to Google via ⋮→Help→Report an issue (or Alt+Shift+I) to encourage them to fix these issues.

oriadam
  • 5,404
  • 2
  • 35
  • 39
  • 1
    Thanks for the comment. I am seeing this also, but [google is intentionally ignoring autocomplete="off"](https://bugs.chromium.org/p/chromium/issues/detail?id=468153#c164). This is happening for me on fields which do not have name/id with "name" or "user" in them. The fields are wrapped inside `
    ` tags. `data-name` could work for fields handled w/ AJAX calls.
    – EpicVoyage Mar 28 '19 at 15:53
0

I was facing the same issue, i found a fix by wrapping my div inside a form tag and added a property autocomplete="off" in the form tag.

...... .....
Dharman
  • 21,838
  • 18
  • 57
  • 107
Asim
  • 9
  • 2