给密码框赋值

来源:互联网 发布:淘宝10元包邮专区在哪 编辑:程序博客网 时间:2024/06/06 14:29
<asp:TextBox ID="txtNotePwd" runat="server" TextMode="Password"  Width="152px"></asp:TextBox>
protected void Page_Load(object sender, EventArgs e)    {        if (!IsPostBack)        {            this.txtNotePwd.Attributes.Add("value", "123");                }        } 
清空密码框value值
protected void btnDele_Click(object sender, EventArgs e)    {        try        {            systemSet.OutPutStartupScript("alert('" + msg + "');document.getElementById('txtNotePwd').value='';");        }        catch (Exception err)        {        }    }