When you try to validate your page with W3C Markup Validation Service at the line when you have a TextBox with AutoComplete attribute like this:
<asp:TextBox ID="myTextBox" runat="server" AutoComplete="Off" />
show the following error message:
there is no attribute “AutoComplete”
Solution:
Change
AutoComplete=”Off”
to
AutoCompleteType=”None”
<asp:TextBox ID="myTextBox" runat="server" AutoCompleteType="None" />
Did my solution solve your problem? Leave a reply.