| Author: Sujit Kumar 31 Dec 2008 | Member Level: Diamond | Rating:  Points: 2 |
I think you have set TextMode="Password" of password textbox.
if yes then use
txtPassword.Attributes.Add("value", txtPassword.Text);
to keep password text in your textbox.
|
| Author: Shruthi 31 Dec 2008 | Member Level: Silver | Rating:  Points: 3 |
asign password to a viewstate txtpwd.text=viestate["Password"]
and then wile editing the record u asign that viewsate to that cell txtpwd.text = viestate["Password"]
actually wat is happening when the page loads the pwd text will be cleared for security purpose so for that u have to use viestate or hidden fields try like this u will get
|