1. 程式人生 > >webapi中session為null的解決方案

webapi中session為null的解決方案

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