Session Use in MVC

Example of Session


Code :

 [Route("Sesstion")]
        public ActionResult mymethod5()
        {
            Session["Mysesstion"] = "My First sesstion Demo";
            return View();//RedirectToAction("Index", "Teacher");
        }

CsHtml :


@session["Mysesstion"]

Comments

Popular posts from this blog

Search Record From Table Using jQuery in Asp.net core MVC

Calendar in Asp.net

CheckBox in Asp.Net MVC (Insert Data of CheckBox in Database and GetData Of checkBox From DataBase)