How do you have text block out for a password:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
Printable View
How do you have text block out for a password:
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
Use the type on the HTML input:
Code:<input type="password" />
<input id="Password1" type="password" runat="server" />
runat="server" adds a whole new dynamic.
You used to do the Post Method to get things done but there is no "action" in the "form".
How to use an "input" type in ASP.net 2.0?
<input id="Password1" type="password" runat="server" />
Works if you set:
password = Password1.Value
in Default.aspx.vb