0

I have a modalpopupextender to add new users in an application. The extender has username and password textboxes. I do not want these textboxes to be autopopulated by values as these are suppose to be new values not the old used ones. I tried setting:

<asp:TextBox ID="userNameTextBox" runat="server" AutoCompleteType="None">

and also Disable but nothing works.

What am I missing? How can I do it?

user2645830
  • 362
  • 1
  • 6
  • 22

1 Answers1

0

Try this as your code :

asp:TextBox Runat="server" ID="Textbox1" autocomplete="off">

you can also check this link autocomplete off link

Community
  • 1
  • 1
5eeker
  • 1,016
  • 1
  • 9
  • 30