I have an asp page with some Textbox controls on it.
By default, the browser will suggest previously entered values for each box.
I\'d like to prevent that b
Autocomplete need to set off from textbox
<asp:TextBox ID="TextBox1" runat="server" autocomplete="off"></asp:TextBox>
Trying from the CodeBehind:
Textbox1.Attributes.Add("autocomplete", "off");