giammin

Asp.net: Disable textbox autocomplete for all browser

Mar 14th, 2012
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.22 KB | None | 0 0
  1. <asp:TextBox TextMode="SingleLine" ID="textBox1" runat="server" AutoCompleteType="Disabled" autocomplete="off" />
  2.  
  3. disable autocomplete for all textboxes in the page:
  4. <form id="mainForm" autocomplete="off" runat="server">
Advertisement
Add Comment
Please, Sign In to add comment