How would I make a password box that shows the ********** ?
Something like this
<asp:PassBox id="NewPassword" runat="server" /
Just can't find the answer.
Thank you!Hi there,
The TextBox web control has a TextMode called "Password" that does this for you.
HTH,
Covo
You would do this.
<asp:textbox id="passwordfield" textmode="password" runat="server" /
Then it will show up as ****
Keep in mind, any time you want a user to type something in, you always use the asp:textbox. But the textbox has different 'texmode's. such as single line, multi line, or password. Does this help?
0 comments:
Post a Comment