标签:session nbsp nstat center ext 解决 public The ssi
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();
}
}
标签:session nbsp nstat center ext 解决 public The ssi
原文地址:https://www.cnblogs.com/zlp520/p/10036072.html