Thursday, December 1, 2011

Disable AutoComplete Feature in ASP.NET controls

a) There is an AutoCompleteType in TextBox Property and it will not disable in FireFox

b) in the TextBox set autocomplete="off"

Works both in IE and FireFox

c) the same above, but add as attribute in code behind
txtDate.Attributes.Add("autocomplete", "off");


No comments: