i am doing a project in class that you have to type in a password and have the password given back to you with astrixs which i did but the second part is i have to write an event handler that repeats the password back without the astriks here is my code so far
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void TxtPassword_TextChanged(object sender, EventArgs e)
{
}
}
i forget what i have to put in the txt password field to get it to display i already put a label in can u help me with the next step please?
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TxtPassword" runat="server"
TextMode="Password" ontextchanged="TxtPassword_TextChanged"></asp:TextBox>
<asp:Label ID="Label1" runat="server" Text="Password"></asp:Label>
<br />
<asp:Label ID="Label2" runat="server"></asp:Label>
</div>
<p>
</p>
</form>
</body>
</html>
here is other part in case you need it