password question

mapat

Registered User.
Local time
Today, 03:33
Joined
Feb 2, 2007
Messages
176
hello,

I have a password textbox on a form. As the user types in his password I want the textbox to display the '*' symbol, just like on any log in page. How do I do this?

thanks
 
The quick answer for here, so nobody has to go searching, is to just set the format property of the text box to PASSWORD. If you type the word "Password" into the Format property it will then mask the password.

To hide the password in the table set the input mask to password.

However, you can still copy and paste the data into another location and it will paste the actual password. To keep it completely inaccessible, you would need to implement security to keep people from the table, or encrypt the password before storing it.
 
How about hiding PART of the field... like to hide all but last 4 digits of a SS# or CC#?
 

Users who are viewing this thread

Back
Top Bottom