我正在尝试创建一个ASP .NET网站,在用户输入时屏蔽注册页面中的密码。我发现使用Windows窗体的网站,但它不适用于ASP .NET网站。
因此,如果用户输入的密码被掩盖,就像这样
*******
任何有关如何让它发挥作用的网站或建议都会很棒。
答案 0 :(得分:92)
使用ASP.NET方式:
<asp:TextBox ID="txtBox1" TextMode="Password" runat="server" />
答案 1 :(得分:18)
//在aspx页面中
<asp:TextBox ID="password" runat="server" TextMode="Password" />
//在MVC cshtml中
@Html.Password("password", "", new { id = "password", Textmode = "Password" })
答案 2 :(得分:4)
答案 3 :(得分:2)
我认为这就是你要找的东西
<asp:TextBox ID="txbPass" runat="server" TextMode="Password"></asp:TextBox>
答案 4 :(得分:2)
@JohnHartsock:你也可以写type =“password”。它在aspx中是可以接受的。
<asp:TextBox ID="txtBox" type="password" runat="server"/>
答案 5 :(得分:1)
只需选择文本框属性'TextMode'并选择密码...
<asp:TextBox ID="TextBox1" TextMode="Password" runat="server" />