Password control

  • Thread starter Thread starter Ken Cox [Microsoft MVP]
  • Start date Start date
K

Ken Cox [Microsoft MVP]

Just use the Textbox control and set its TextMode property to password:

<asp:TextBox id="TextBox1" runat="server"
TextMode="Password"></asp:TextBox>
 
Is there a webforms equivalent to the HTML password box control?
I don't see one in the toolbox.

Regards
 
Thanks Ken.


Ken Cox said:
Just use the Textbox control and set its TextMode property to password:

<asp:TextBox id="TextBox1" runat="server"
TextMode="Password"></asp:TextBox>
 
Back
Top