ASP.net MVC - Navigation and highlighting the “current” link

前端 未结 9 1642
清酒与你
清酒与你 2020-12-30 11:10

When you create a new MVC project it creates a Site.master with the following markup:

    <
9条回答
  •  南笙
    南笙 (楼主)
    2020-12-30 11:29

    public ActionResult SignIn(User user)
    {
        User u = db.Users.Where(p=>p.Email == user.Email & p.Password == user.Password).FirstOrDefault();
        if (u == null)
        {
           return View();
        }
        var id = u.Id;
        Session["id_user"] = id;
    
        return RedirectToAction("Index", "Home");
    }
    

提交回复
热议问题