Why ASP.NET AJAX UpdatePanels are dangerous

Using Web methods instead full post backs…
Web methods allow ASP.NET AJAX pages to directly execute a page’s static methods, using JSON (JavaScript Object Notation). JSON is basically a minimalistic version of SOAP, which is perfectly suited for light weight communication between client and server. For more information about how to implement web methods and JSON, [...]

Are you making these 3 common ASP.NET AJAX mistakes?

Check out Dave Wards advice on Update Panels and Postabacks HERE
In this post, I’d like to point out a few of the problems I’ve seen developers running into and what you can keep in mind to avoid them:

Page events still fire during partial postbacks.
UpdatePanel events fire, even when not updating.
Control event handlers fire after [...]