BC
baljeet chawla
July 13, 2006 07:49 AM UTC
first strore the password in viewstate
ViewState["pass"] = Password;
nd then add the textbox attribute programmatically
TxtPass.Attributes.Add("value", ViewState["pass"].ToString());
hope it will solve ur problem