Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

AutoComplete always enabled even after setting to OFF on the new FireFox

  • 3 antwoorden
  • 6 hebben dit probleem
  • 4 weergaven
  • Laatste antwoord van cor-el

more options

In the new Firefox 44, I don't want AutoComplete for particular text box or that form, but Firefox still keeps filling it, also the message of " do you want ff to remember your username and password" keeps showing up for my application!

I am using <asp:TextBox ID="txtUserName" runat="server" class="form-control inputUserName" MaxLength="50" AutoCompleteType="Disabled" autocomplete="off" />

In the new Firefox 44, I don't want AutoComplete for particular text box or that form, but Firefox still keeps filling it, also the message of " do you want ff to remember your username and password" keeps showing up for my application! I am using <asp:TextBox ID="txtUserName" runat="server" class="form-control inputUserName" MaxLength="50" AutoCompleteType="Disabled" autocomplete="off" />

Alle antwoorden (3)

more options

Firefox ignores autocomplete=off for saving passwords (input field with type="password"). There is a pref to define this behavior.

  • signon.storeWhenAutocompleteOff

I think that Firefox will still honor autocomplete=off for saving form data.

more options

Dear, I need the auto completion to be off for a specific form text box only, not for the entire form, how is that done?

more options

If you set autocomplete on the form then this applies to all input fields in that form. If you want autocomplete only for specific input fields then you have to set that attribute only for those input fields. I'm not familiar with ASP, so if you can't do this yourself then best would be to ask advice at a more specialized forum like the Stack Overflow forum site.