Session webapi中session为null的解决方案
在Global.asax里添加:开启Session功能(默认是不开启)
重写init方法
public class WebApiApplication : System.Web.HttpApplication
{
public override void Init()
{
this.PostAuthenticateRequest += (sender, e) => HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
base.Init();
}
}
原文地址:https://www.cnblogs.com/zlp520/p/10036072.html
时间: 2024-10-11 07:20:34