ASP.Net TextBox.AutoCompleteType Property - Useful? customizable?

The ASP.NET TextBox control has an AutoCompleteType property that accepts AutoCompleteType .

First, is this property commonly used in real development? Or is "browser autocomplete" turned off and Ajax autocomplete is used instead?

Secondly, are you limited only by the values ​​in the AutoCompleteType enumeration? Can you extend the AutoCompleteType enumeration to contain custom values?

+3
source share
2 answers

AutoCompleteType - autocomplete expando, html. , "" . , , .

: 2 "", , "", .

+4

autocompletetype="disabled" Firefox. autocompletetype , IE. (Yay asp.net .)

autocomplete="off" - setattribute().

+3

Source: https://habr.com/ru/post/1720113/


All Articles