我有两个框,一个带有用户名 [文本],一个带有密码 [密码]。
我在 CodeBehind 中使用此代码:
protected void Button2_Click1(object sender, EventArgs e)
{
TextBox1.Text = "";
TextBox2.Text = "";
}
[asp.net/html]
<asp:TextBox ID="TextBox2" runat="server" Height="24px" Style="text-align: center" Width="209px" TextMode="Password"></asp:TextBox>
第一个文本框清除,但第二个没有。在 ASP.NET 中有没有一种特殊的方法可以做到这一点?