2、在Web Servcie中使用Session,需要對Web Method做如下處理
[WebMethod(EnableSession = true)]
public void usingSession()
{
Session["Name"] = "Name";
}
如果不加EnableSession = true,在Web Service中是不能使用Session的。
3、這裡說一下使用mode="StateServer"解決Session丢失問題的配置:
1)首先在Windows服務中啟用 asp.net State Service,這個服務預設被設定為手動啟動
2)在web.config中做如下配置
<system.web>
<!--其他配置資訊-->
<sessionState timeout="200000" cookieless="false" mode="StateServer"></sessionState>
</system.web>
timeout自己根據需要設定,關鍵是要配置這兩個屬性cookieless="false" mode="StateServer",cookieless預設為false,是以這個屬性可以去掉。