Friday, March 16, 2012

Password control

Is there a webforms equivalent to the HTML password box control?
I don't see one in the toolbox.

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

<asp:TextBox id="TextBox1" runat="server"
TextMode="Password"></asp:TextBox
"Jerry" <JerryOfBorg@.Yahoo.com> wrote in message
news:%23gzS8pQ8DHA.1596@.TK2MSFTNGP10.phx.gbl...
> Is there a webforms equivalent to the HTML password box control?
> I don't see one in the toolbox.
> Regards
Thanks Ken.

"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@.sympatico.ca> wrote in message
news:OFmMCyQ8DHA.1052@.TK2MSFTNGP12.phx.gbl...
> Just use the Textbox control and set its TextMode property to password:
> <asp:TextBox id="TextBox1" runat="server"
> TextMode="Password"></asp:TextBox>
>
> "Jerry" <JerryOfBorg@.Yahoo.com> wrote in message
> news:%23gzS8pQ8DHA.1596@.TK2MSFTNGP10.phx.gbl...
> > Is there a webforms equivalent to the HTML password box control?
> > I don't see one in the toolbox.
> > Regards

0 comments:

Post a Comment