ASP.NET MVC + jQuery + IIS6: Multiple Ajax requests

后端 未结 3 689
抹茶落季
抹茶落季 2021-01-15 21:01

I\'m not sure where the problem is...

I have an ajax request that checks the tracking information for a package on a page with a list of packages:

$(         


        
3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-15 21:34

    In theory, ASP.NET with Session state enabled locks the session for each user request, thus processing them serially. I don't think you can disable Session for an MVC project painlessly, because TempData for example uses session by default. But you can try.

    EDIT: here's a related question

提交回复
热议问题