For my web application, I have verified autocomplete on firefox and it works great. Whereas the same fails for chrome. I don't want AutoComplete for particular textbox or that form. But chrome still keeps filling it.
<asp:TextBox ID="EmployeeSearch" runat="server" AutoCompleteType="Disabled"></asp:TextBox>
Tried to disable autocomplete option from form but still it doesn't work for chrome.
<form id="form1" runat="server" autocomplete="off">
Please help me out.