hi I use textbox and check box in page below are codes:
<div id="chadM2R"> <label runat="server" class="chadM2L"> <input type="checkbox" id="Chpass" runat="server"/></label></div>
<asp:TextBox ID="txtpass" runat="server" CssClass="txtramzD" TextMode="Password"></asp:TextBox>
here as you see textbox textmode is password so when users enter password it doesn't show character it will be like: ******
I want when users enter their password if they checked checkbox it show character in textbox
i.e when they enter password in textbox it will display= ******
and when they checked checkbox it will display 123456 --->enterd character by users
how I can do it?
best regards
neda