解决方法是新建 全局应用程序类 Global.asax 在 Session_Start 函数中 添加 string sessionId = Session.SessionID;

protected void Session_Start(object sender, EventArgs e)

    {

        string sessionId = Session.SessionID;

    }

相关文章:

  • 2021-11-09
  • 2021-12-03
  • 2022-12-23
  • 2021-12-01
  • 2021-11-05
  • 2022-12-23
  • 2021-11-07
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
  • 2022-12-23
  • 2021-10-11
  • 2021-10-25
  • 2022-12-23
相关资源
相似解决方案