webapi中session为null的解决方案
2021-06-28 19:06
标签:session nbsp nstat center ext 解决 public The ssi Session webapi中session为null的解决方案 在Global.asax里添加:开启Session功能(默认是不开启) 重写init方法 webapi中session为null的解决方案 标签:session nbsp nstat center ext 解决 public The ssi 原文地址:https://www.cnblogs.com/zlp520/p/10036072.html
public class WebApiApplication : System.Web.HttpApplication
{
public override void Init()
{
this.PostAuthenticateRequest += (sender, e) => HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
base.Init();
}
}
文章标题:webapi中session为null的解决方案
文章链接:http://soscw.com/index.php/essay/99021.html