Greetings,
PROBLEM: While retreiving UserID & Passwords from a *.mdb, I have been unable to make the TextBox display the asterisk '*' Rather, the TextBox appears empty if I use the TextMode="password" OR appears un-encrypted with the TextMode property omitted.
Worthy of note may be the fact that the Password column in the *.mdb has the Input Mask property set to 'password'. Nonetheless, the passwords are displayed on the web page un-encrypted (not good!).
Example:
TextMode="Password"
This will display an empty TextBox, where any NEW keystrokes are represented with asterisks (*), but I need to display a query result into the TextBox, with asterisks, so the user may change the password without it being viewed.
Anyway, I could use some guidance here
PROBLEM: While retreiving UserID & Passwords from a *.mdb, I have been unable to make the TextBox display the asterisk '*' Rather, the TextBox appears empty if I use the TextMode="password" OR appears un-encrypted with the TextMode property omitted.
Worthy of note may be the fact that the Password column in the *.mdb has the Input Mask property set to 'password'. Nonetheless, the passwords are displayed on the web page un-encrypted (not good!).
Example:
Code:
<script runat="Server">
...Here I do the db stuff and assign the password value to txtPassword.Text.
</script>
<asp:TextBox id="txtPassword"
Code:
Runat="Server" />
This will display an empty TextBox, where any NEW keystrokes are represented with asterisks (*), but I need to display a query result into the TextBox, with asterisks, so the user may change the password without it being viewed.
Anyway, I could use some guidance here