Setting Autocomplete Off for the Textbox

Posted by Venkat | Labels:

Now i have to show how to set the Autocompletetype - off for the asp.net  - Texbox

If you want to set the autoComplete property  off use AutoComplete="off" for the textbox.

ie: Autocomplete in the sense if the user typed some text on the textbox, then once again he entered the some word starting with the same letter, it shows previos typed word shows like a combobox manner.

To avoid showing that previous typed word by setting the autoComplete ="Off" to the Textbox.

if you want to set it for the whole page set it on the Form tag


<form autocomplete="off" id="form1" runat="server">
</form>

PayOffers.in