前台.cshtml得到session值方法

方法一

方法二

后台:

 public ActionResult get_session()
        {
            if (Session["visitor_name"]!=null)
            {
                return Json(Session["visitor_name"]);
            }
            return Json("no_visitor_name");
        }

你可能感兴趣的:(前台.cshtml得到session值方法)