views:

89

answers:

2

how do you create a multi-threaded asp.net ajax update panel?

thanks!

+1  A: 

You can't with an UpdatePanel, the last async postback wins.

rick schott
ok, how do i fix timeouts on UpdatePanels? It seems that after constant use of it, it just stops async'ing. I've set the updatepanel to Conditional.
Martin Ongtangco
That is a loaded question, would have to see how you are using them?
rick schott
A: 

You don't. The update panel isn't designed to be multi-threaded. You can have an Ajax request go to the server which calls a server side method that can spawn multiple threads, but the update panel itself cannot be made multi threaded.

lomaxx