Tuesday, March 1, 2011

Show password as password format in textbox from database

 if (Textpwd.TextMode == TextBoxMode.Password)
            {
                Textpwd.Text = dr[5].ToString();
                Textpwd.Attributes.Add("value", Textpwd.Text);
            }

No comments:

Post a Comment