Ejemplo n.º 1
0
        protected void btnForgotPassword_Click(object sender, EventArgs e)
        {
            User user = new BusinessObjects.User();

            user = user.ForgotPassword(txtEmail.Text);
            if (user == null)
            {
                lblStatus.Text = "No email found";
            }
            else
            {
                lblStatus.Text = "Check your email for your password";
            }
        }