我正在尝试在网络服务中保存会话中的价值,但它给了我错误:object reference not set to an instance of an object
。
Session["ProcessStartTime"] = strDate;
答案 0 :(得分:0)
将(EnableSession = True)
添加到WebMethod
[WebMethod (EnableSession = true)]
上的这篇好文章
答案 1 :(得分:0)
strDate
不为空Session["ProcessStartTime"] = strDate;
检查您启用的会话
醇>
这是一个示例
public class mytest: System.Web.Services.WebService
{
[WebMethod (EnableSession = true)]
public string HelloWorld()
{
//your logic here
if(strDate!=null)
Session["ProcessStartTime"] = strDate;
else
// handle if ur strDate is null
}
}