Author: Jigzy | Posted on: 9/23/2008 12:24:58 PM | Views : 1265

 i've tried using the Viewstate to hold the password of the user if the page posts back. but it is not working properly. Here is the LOC.
    protected string TypedPassword
    {
        get
        {
            if (ViewState["TypedPassword"] != null)
            {
                return Convert.ToString(ViewState["TypedPassword"]);
            }
            return null;
        }
        set
        {< ...

Go to the complete details ...