I have this textBox:
<asp:TextBox ID="txtInsuredPassword" TabIndex="1" runat="server" Width="157px"
TextMode="Password" AutoCompleteType="Disabled" >
</asp:TextBox>
AutocompleteType ="Disabled" is not working on chrome and I found that I have to use autocomplete="Off", but I cannot find it in my control ... any suggestions?
As you can see here autocomplete is not available
In the New page inside your Mark Up before your
txtInsuredPassword
try to keep thisinput
type so that your problem will be solvedAt the time of DOM loading , broswer would first check for the inputtype
password
and autofill it with thePassowrd
so we are just trying to avoiding it by keeping afakepassword
as input type