User007
User007

Reputation: 37

Disable textbox auto fill in ASP.NET

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

Answers (1)

Dgan
Dgan

Reputation: 10275

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

or add attribute

autocomplete="off"

Upvotes: 1

Related Questions