Click here to Skip to main content
15,893,622 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello all,

In my application, for registering the new users, I have created one page.
In which I have provided fields for email address, verifying email address, password, verify password and all that kind of stuff...

For password field I have defined input method as "Password" and I am using Ajax extender named WaterMarkTextBox for this field, but at runtime it gives me watermark text as password input (in dot).

So how do i get rid off this problem?

Thanking you in advance.. :)
Posted

1 solution

simply use placeholder property of textbox like
XML
<asp:TextBox runat="server" ID="Password"  TextMode="Password"  autocomplete="off" AutoCompleteType="None" placeholder="Password..." />
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900