TextBox控件TextMode=Password时赋值
因为TextBox编译之后是Input,利用Input的Value赋值方法实现.
<asp:TextBox ID="txtPassword" runat="server" TextMode="password" MaxLength="30"></asp:TextBox>
赋值的时候:
txtPassword.Attributes.Add("Value", "1234");
因为TextBox编译之后是Input,利用Input的Value赋值方法实现.
赋值的时候:
txtPassword.Attributes.Add("Value", "1234");