标签: c# asp.net session webmethod
会话未获取新值
对象引用未设置为对象的实例
答案 0 :(得分:2)
Session为空。
Session
使用:
[WebMethod(EnableSession = true)]
答案 1 :(得分:0)
您需要在网络方法上启用会话:
[WebMethod(EnableSession=true)] public bool SearchCOurses(int level, string keywords) { ... }