Reputation: 37
I want to know how we can disable auto fill text box values? It's not about disabling autocomplete by autocomplete="false"
.
Upvotes: 0
Views: 704
Reputation: 10275
mytexbox.Attributes.Add("autocomplete", "off");
or add attribute
autocomplete="off"
Upvotes: 1