If You a Textbox with property TextMode="Password" ,
if you try to Assign a Value to It .
txtPassword.Text = "Sometext" ;
No Text will Appear in Text box .
Correct way to Assign :
txtPassword.Attributes.Add("value", "Sometext") ;
if you try to Assign a Value to It .
txtPassword.Text = "Sometext" ;
No Text will Appear in Text box .
Correct way to Assign :
txtPassword.Attributes.Add("value", "Sometext") ;
No comments:
Post a Comment