第一种
WebForm中的TextBox控件作为密码框(如图1)时,需要把TextMode属性设置为Password(如图2),而且要在Page_Load中使用Attributes赋值。
protected void Page_Load(object sender, EventArgs e) { ReaderPassword.Attributes["value"] = ReaderPassword.Text; }
第二种
C#textbox 密码输入框
C#中,怎么让textbox输入数字时显示为*号,因为用它作为验证输入密码
设置TextBox的PasswordChar属性为*