标签:nbsp target col 调试 val this value color 浏览器
1. 用于输入或显示密码的文本框,设置属性TextMode为Password
<asp:TextBox ID="txt_Password" runat="server" TextMode="Password"></asp:TextBox>
2. 增加一个TextMode属性默认为"SingleLine",并设置 Visible="false",使其隐藏
<asp:TextBox ID="getTxtPassword" runat="server" TextMode="SingleLine" Visible="false"></asp:TextBox>
this.getTxtPassword.Text = "密码"; this.txt_Password.Attributes.Add("value", this.getTxtPassword.Text); this.txt_Password2.Attributes.Add("value", this.getTxtPassword.Text);
asp:textbox 的 TextMode:password
标签:nbsp target col 调试 val this value color 浏览器
原文地址:https://www.cnblogs.com/2625664742-chanyk/p/9449346.html