.NET .ashx 文件 用Session 是須要注意的問題

  .ashx 文件,默認不可以使用 Session ,須要使用Session 時, 須要引用 接口 IRequiresSessionStatesession

  例如:ui

 public class AddHouseInfo : IHttpHandler,IRequiresSessionState
{}使用 Session 時, HttpContext.Current.Session[]  這種方式纔可調出使用Session ,在 WebConfig 中要聲明    <sessionState mode="StateServer" timeout="60" ></sessionState>  其中, mode  有多種方式,區別 Session 存儲的方式。
相關文章
相關標籤/搜索