在更新模式中,我已检索到输入密码,如下所示:
txtConfirmPassword.Attributes["value"] = DR["Password"].ToString();
但是在添加模式下,我想清除这个TextBox“txtConfirmPassword”。我已经给出了如下:
txtConfirmPassword.Text = "";
但它没有清除。如何清除这个TextBox?
答案 0 :(得分:5)
您可以用同样的方式清除值。
txtConfirmPassword.Attributes["value"] = "";
原因:设置TextMode="Password"
后,您将无法设置.Text
属性。在您的情况下,您尝试设置txtConfirmPassword.Text = "";
,它对文本框没有任何影响。
答案 1 :(得分:0)
text确认Password.Clear();
这不起作用吗?
答案 2 :(得分:0)
Everything must be so hard with this asp.net try'd to set off/disabled for autocomplete , try'd to change text,try'd to change value attribute ,try'd to format my PC. . . only like this its works :
<asp:TextBox Text="" oninput="this.type='password'" autocomplete="Off" style="border-color:black" CausesValidation="true" runat="server" ID="Password" CssClass="form-control" />