1
訪問會話在MVC 1.0 C#應用程序,什麼是以下之間的不同:如何在MVC 1.0
HttpContext.Current.Session["MyValue"] = "ItsValue";
和
Session["MyValue"] = "ItsValue";
訪問會話在MVC 1.0 C#應用程序,什麼是以下之間的不同:如何在MVC 1.0
HttpContext.Current.Session["MyValue"] = "ItsValue";
和
Session["MyValue"] = "ItsValue";
正在訪問的ViewPage對象的屬性。我試圖從另一個不屬於ViewPage的課程中學習,你會使用HttpContext.Current.Session["MyValue"];
它們相當於它們引用同一個對象。
HttpContext.Current.Session == this.Session