Monday, April 4, 2011

How to turn off autocomplete for a textbox in ASP.Net

By html attribute:
<asp:TextBox runat="server" ID="Textbox" autocomplete="off"/>
By JQuery:
$("#<%=Textbox.ClientID %>").attr("autocomplete""off");


No comments:

Post a Comment