ASP .NET : textbox password mode: keep the password value to maintain
If we need this textbox password mode to display on postback the following code is used
Textbox1.Attribute.Add("value",Textbox1.Text);
That it..
Textbox1.Attribute.Add("value",Textbox1.Text);
That it..