public async Task<ActionResult> Register(RegisterViewModel model) { if (ModelState.IsValid) { var user = new ApplicationUser { UserName = model.Email, Email = model.Email , Name =model.Name , PhoneNumber=model.PhoneNumber,PhoneNumber2 = model.PhoneNumber2, CompanyEmail = model.CompanyEmail ,CompanyName=model.CompanyName,Address = model.Address, Address2 = model.Address2, City =model.City, State=model.State,Zip=model.Zip,Fax=model.Fax}; var result = await UserManager.CreateAsync(user, model.Password); if (result.Succeeded) { await SignInManager.SignInAsync(user, isPersistent:false, rememberBrowser:false); UserTracking NewUser = new UserTracking(); NewUser.IPAddress = Request.ServerVariables["REMOTE_ADDR"]; NewUser.user_Id = user.Id; NewUser.insert(NewUser); // For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771 // Send an email with this link // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id); // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme); // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>"); return RedirectToAction("Index", "Home"); } AddErrors(result); } // If we got this far, something failed, redisplay form return View(model); }
public async Task<ActionResult> Login(LoginViewModel model, string returnUrl) { if (!ModelState.IsValid) { return View(model); } // This doesn't count login failures towards account lockout // To enable password failures to trigger account lockout, change to shouldLockout: true var result = await SignInManager.PasswordSignInAsync(model.Email, model.Password, model.RememberMe, shouldLockout: false); switch (result) { case SignInStatus.Success: var user = await UserManager.FindByEmailAsync(model.Email); UserTracking NewUser = new UserTracking(); NewUser.IPAddress = Request.ServerVariables["REMOTE_ADDR"]; NewUser.user_Id = user.Id; NewUser.insert(NewUser); return RedirectToLocal(returnUrl); case SignInStatus.LockedOut: return View("Lockout"); case SignInStatus.RequiresVerification: return RedirectToAction("SendCode", new { ReturnUrl = returnUrl, RememberMe = model.RememberMe }); case SignInStatus.Failure: default: ModelState.AddModelError("", "Invalid login attempt."); return View(model); } }
protected void Session_Start(object sender, EventArgs e) { UserTracking NewUser = new UserTracking(); NewUser.IPAddress = Request.ServerVariables["REMOTE_ADDR"]; NewUser.insert(NewUser); }