会话没有获得新值

时间:2013-09-13 19:13:34

标签: c# asp.net session webmethod

会话未获取新值enter image description here

对象引用未设置为对象的实例

2 个答案:

答案 0 :(得分:2)

Session为空。

使用:

[WebMethod(EnableSession = true)]

答案 1 :(得分:0)

您需要在网络方法上启用会话:

[WebMethod(EnableSession=true)]
public bool SearchCOurses(int level, string keywords) {
    ...
}