Asp.Net MVC and ajax async callback execution order

前端 未结 1 785
我寻月下人不归
我寻月下人不归 2020-12-21 04:36

I have been sorting through this issue all day and hope someone can help pinpoint my problem. I have created a \"asynchronous progress callback\" type functionality in my ap

相关标签:
1条回答
  • 2020-12-21 05:13

    I found a fix at last. The session state can be controlled at the Controller and/or Controller Method level. Since the authorization is being verified at a higher level there is no need to use session in what I am doing. I simply disable it for the unit of work.

     [SessionState(SessionStateBehavior.Disabled)]
     public class _TestController : ProgressWorkerController
    
    0 讨论(0)
提交回复
热议问题