Monday, February 11, 2008

How To Retain Password Field Data during round trips to server

Preserve Password Field Data
When Use the password text box on the ASP.NET page and want to preserve the value of the password field during round trips to server; Use that line of code in he block of code through which server roun trip happen

txtPassword.Attributes.Add("value", txtPassword.Text.ToString());

No comments: