ASP .NET : textbox password mode: keep the password value to maintain
Textbox mode
On postback of the page the Textbox password mode is removed.
If we need this textbox password mode to display on postback the following code is used
Textbox1.Attribute.Add("value",Textbox1.Text);
That it..
If we need this textbox password mode to display on postback the following code is used
Textbox1.Attribute.Add("value",Textbox1.Text);
That it..
0 comments:
Post a Comment