how i create a textbox for password using web controls
Paramita-
Are you asking how you can adding a TextBox to your page that hides the text input (a.k.a. password mode)?
If so, the solution is very easy. Simply add an ASP.NET Textbox to your page and set its TextMode property to Password, like this:
<asp:textbox runat="server" id="myTxtBox" TextMode="Password" />
Thanks~
0 comments:
Post a Comment