码迷,mamicode.com
首页 > Windows程序 > 详细

webapi中session为null的解决方案

时间:2018-11-29 11:09:44      阅读:519      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!