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");
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:
Post a Comment