I am having a textbox for password field, I want to add a Checkbox that toggles the password into plain text.
I did the following coding for it.
txtpwd.PasswordChar = (char)(byte)32;
but this simply hides not showing the plain text of what is typed in textbox field.
any body can help?