Showing posts with label Password TextBox blank. Show all posts
Showing posts with label Password TextBox blank. Show all posts

Thursday, January 13, 2011

Password TextBox blank when Page Refresh or Button Click in asp.net

Password TextBox blank when Page Refresh or Button Click in asp.net
This is Very Series Problem when Register form Submit or Refresh Page or any DropDownList PostBack . Simple Solution of this Problem is

protected void Page_Load(object sender, EventArgs e)
{
txtPassword.Attributes.Add("Value", txtPassword.Text);

}