Esempio n. 1
0
 public ActionResult ForgotPwd(string email = "")
 {
     if (email == "")
     {
         return(View());
     }
     if (UserAccountBLL.CheckEmail(email, "Add"))
     {
         ModelState.AddModelError("", "Email is not exist");
         return(View());
     }
     ModelState.AddModelError("", "Check your email ");
     return(View());
 }