MVC modal login using jQuery, Ajax ASP.NET
问题 Help with my code, what's wrong i do. In my layout when I click on SignIn button, a modal form appears, insert data, in debug mode is shown that the data is read, but the next action doesn't run. Please any suggestion. My controller: [HttpGet] public ActionResult Logins() { return PartialView(); } [HttpPost] public ActionResult Logins(User user) { var obj = db.User.Where(x => x.User_login.Equals(user.User_login) && x.User_password.Equals(user.User_password)).FirstOrDefault(); if (obj != null)