开发者

ASP.NET MVC Ajax helpers block other Ajax requests

开发者 https://www.devze.com 2022-12-22 04:31 出处:网络
I have this very strange problem. Currently I\'m using ASP.NET MVC Ajax Ajax.BeginForm helper. After it creates successful post request to server and receives response my other components that use a

I have this very strange problem.

Currently I'm using ASP.NET MVC Ajax Ajax.BeginForm helper.

After it creates successful post request to server and receives response my other components that use ajax, are not able to request 开发者_运维百科anything from server (Firebug just does not display any requests, at the same in another browser window I can get response from server just fine the problem is defiantly not on server side).

But when I return nothing in response to Ajax.BeginForm helper request my other ajax components are able to make requests to server.

Is it a know issue with ASP.NET Ajax or I'm doing something wrong?

Thank You very much!


Your probably crashing the application server with that request. Check your server logs. If your debugging this kind of thing happens, your maybe not catching an exception.

0

精彩评论

暂无评论...
验证码 换一张
取 消