0

I want to know how we can disable auto fill text box values? It's not about disabling autocomplete by autocomplete="false".

Garf365
  • 3,619
  • 5
  • 29
  • 41
User007
  • 37
  • 1
  • 7
  • What do you mean by `auto fill`? Can you explain it, or show an image of it? – ConnorsFan Aug 24 '16 at 15:04
  • If you click save user name password save in browser it will be saved,When you open it again the values will get automatically loaded. – User007 Aug 24 '16 at 15:23
  • Did you try the various suggestions given in [Disabling Chrome Autofill](http://stackoverflow.com/questions/15738259/disabling-chrome-autofill)? – ConnorsFan Aug 24 '16 at 16:31

1 Answers1

1
mytexbox.Attributes.Add("autocomplete", "off");

or add attribute

autocomplete="off"
Dgan
  • 10,077
  • 1
  • 29
  • 51