ASP.NET MVC and Ajax, concurrent requests?

后端 未结 6 1570
花落未央
花落未央 2020-11-27 04:15

AJAX newbie here!
At the moment in my ASP.NET MVC web app my AJAX requests appear to be getting batched or queued, im not sure.
No requests seem to be getting comp

6条回答
  •  臣服心动
    2020-11-27 04:50

    Since .NET Framework v3.0 released, you can use "SessionStateBehavior" enum with SessionStateAttribute:

    [SessionState(System.Web.SessionState.SessionStateBehavior.ReadOnly)]
    public class MyController : BaseController { }
    

提交回复
热议问题