To prevent
Autocomplete on an HTML input tag, you can simply set the
Autocomplete attribute to "off". The
Autocomplete attribute on an HTML input tag of type text does not appear in the schema for an ASP.NET TextBox control, however it does what you expect.
<asp:TextBox id="TextBox1" Autocomplete="off" runat="server"></asp:TextBox>