Hello,
In our application, we have a scenario where we need to handle multiple ajax postbacks executing in parallel. We have set "RequestQueueSize" of the Ajax Manager to 10 to accomplish this,
After doing so, We found a problem when we tested the scenario outlined below :
We have 2 combos(Say combo1 and combo2) on a page, both of which cause postbacks to populate different fields . We executed the following steps:
1. choose a value in combo1. Combo 1 posts back to fetch and populate related values on our page
2. change the selected value in combo1. While its postback is executing, choose a value in combo2.
On doing this we found both postbacks execute successfully. But After combo2's postback finishes executing, the state of combo1 is restored to what it was after step1 above.
Any help with solving this problem would be greatly appreciated.
Thank you
In our application, we have a scenario where we need to handle multiple ajax postbacks executing in parallel. We have set "RequestQueueSize" of the Ajax Manager to 10 to accomplish this,
After doing so, We found a problem when we tested the scenario outlined below :
We have 2 combos(Say combo1 and combo2) on a page, both of which cause postbacks to populate different fields . We executed the following steps:
1. choose a value in combo1. Combo 1 posts back to fetch and populate related values on our page
2. change the selected value in combo1. While its postback is executing, choose a value in combo2.
On doing this we found both postbacks execute successfully. But After combo2's postback finishes executing, the state of combo1 is restored to what it was after step1 above.
Any help with solving this problem would be greatly appreciated.
Thank you