0
在這裏,我想從一個頁面傳遞一個字符串變量到另一個使用會話.. 但它給出了一個錯誤.. 請幫助... 這裏是我的編碼如何使用會話在ASP中將數據從一個頁面傳遞到另一個頁面?
//this is for sending
Session["themeColor"] = "Sky Blue";
//this is for retriving
String themeColor = Session["themeColor"].ToString();
什麼是錯誤? –
錯誤14非靜態字段,方法或屬性'System.Web.UI.Page.Session.get'需要對象引用。 –
您是否偶然嘗試從頁面中的靜態方法獲取會話數據?因爲那不會像那樣工作。 – Sean