webapi中session为null的解决方案

2021-06-28 19:06

阅读:511

标签: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();
        }

webapi中session为null的解决方案

标签:session   nbsp   nstat   center   ext   解决   public   The   ssi   

原文地址:https://www.cnblogs.com/zlp520/p/10036072.html


评论


亲,登录后才可以留言!