How to display password as "**" in the text box instead of displaying real password on text box? Is it possible in c#
Thanks
Just set up a property of textbox
:
textBox1.UseSystemPasswordChar = true;
and you can also set the char
for password what you want to:
textBox1.PasswordChar = '*';