How to maintain postback password type value after sanding anther page
i am click submit button then passing null value
if (PreviousPage != null && PreviousPage.IsCrossPagePostBack)
{
txtEmail.Text = PreviousPage.Email;
txtPassword.Attributes.Add("Value", PreviousPage.Passwordp);
}
in this condition email maintaining but password not maintaning so any other option suggest me
Go to the complete details ...