使用泛型處理常式(ashx)存取Session
要寫入Session必須先加入介面IRequiresSessionState,並且必須引用命名空間
using System.Web.SessionState;
using System.Web.SessionState;
public class File_WebHandler : IHttpHandler, IRequiresSessionState //IReadOnlySessionState 只可讀取Session { public void ProcessRequest(HttpContext context) { context.Session["Write"] = "寫入Session"; //若沒有加入介面將會發生錯誤 } }
留言
張貼留言
您好,我是 Lawrence,這裡是我的開發筆記的網誌,如果你對我的文章有任何疑問或者有錯誤的話,歡迎留言讓我知道。