2009年6月9日 星期二

ASP.NET: App_Code資料夾中使用Session() 和 Application()

ASP.NET: App_Code資料夾中使用Session()

在ASP.NET的App_Code資料夾中欲在其檔案程式類別使用Session()應使用HttpContext.Current.Session來代替。



原來寫法


Session("Admin")



替代寫法

HttpContext.Current.Session("Admin")


Application() 改為 HttpContext.Current.Application()

網誌存檔