如何在EEP設計全域變數
WebForm可以使用HttpContext.Current.Session來保存全域變數,如下:
HttpContext.Current.Session["var"] = value;
讀值: object obj = HttpContext.Current.Session["var"]
"var"是Session的變數。