在ASP.NET C#中调用Web服务时,Session为null

前端之家收集整理的这篇文章主要介绍了在ASP.NET C#中调用Web服务时,Session为null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个登录类,它有一个函数:isCorrect()将用户名和密码作为两个属性和一个asp.net WebService允许使用 AJAX.

LoginService.cs

public Login CorrectLogin(string username,string password) 
{   
   Login thisLogin = Login.isCorrect(username,password);
   int thisLoggedinUserID = thisLogin.LoggedinUserID;

   if (thisLoggedinUserID != 0)
   {
      Session["loggedinUser"] = thisLoggedinUserID;
   }

   return thisLogin;
}

当我想要设置Session [“loggedinUser”] = thisLoggedinUserID的值时,这个错误产生:

调用的对象是空的.

我不明白什么是解决方案.

解决方法

默认情况下,Web服务没有Session.将属性添加到WebMethod ..
[WebMethod(EnableSession=true)]
 public Login CurrentLogin .....
原文链接:https://www.f2er.com/aspnet/246459.html

猜你在找的asp.Net相关文章