ASP.NET 回发密码框清空问题处理方法
内容摘要
在Page_Load里面加上 复制代码 代码如下: this.txtPassword.Attributes["value"] = this.txtPassword.Text;
文章正文
在Page_Load里面加上
this.txtPassword.Attributes["value"] = this.txtPassword.Text;
复制代码 代码如下:
this.txtPassword.Attributes["value"] = this.txtPassword.Text;
代码注释