建置網站時,一定會使用的程式語法
也就是 session。
當瀏覽器關閉時,該變數也會跟著消失。
//建立
Session.Add("sessionName", "123");
//or
Session["sessionName"] = "123";
Session.Add("sessionName", "123");
//or
Session["sessionName"] = "123";
//取值
string s = Session["sessionName"].ToString();
string s = Session["sessionName"].ToString();
//移除
Session.Remove("sessionName");
Session.Remove("sessionName");
沒有留言:
張貼留言