vote up 0 vote down star
1

Inside a web application that we are developing, there is a time in where the user commits a search by providing some parameters (it's a reservation system, so "parameters" = 2 dates).

A hidden table (or, better, empty) is then filled with the results of the query.

Now comes my problem: is it better to do an AJAX call to a WebMethod, or just let the "Search" button inside an UpdatePanel and update it server side?

In this post, Encosia points out that everything in the panel is updated each time an asynchronous postaback is made.

So, given the fact that this application has to be as fast as possible, and should use the lowest amount of bandwidth, i went for the AJAX approach.
In this way i lowered it from 40-60KB to ~1KB (MAX!) each search.

The execution is "Search button click" -> Ajax call to WebMethod -> JSONed result read and JQuery HTML-injected inside the table.

There are however some problems with this approach, with the bigger being hard to maintain code (client-side performance is not a big problem, it takes ~ 12ms to build the table).

flag

3  
You've pretty much answered your own question. Each approach has pros and cons. It's up to you as designer/developer to weigh those up and come up with the approach that meets the majority of your requirements. – ChrisF Oct 1 at 12:10
A thing i missed in the post is that, by using AJAX, i completely avoided the use of ScriptManager and UpdatePanels. That is a lot of less javascript loaded in the page. However, looking at the changes coming in ASP .NET 4.0, i'll probably ask for a revert to UpdatePanel for better maintainability. – Alex Bagnolini Oct 1 at 17:04

2 Answers

vote up 1 vote down check

I don't think I'm seeing the question here.

UpdatePanel is very easy to use/abuse/maintain but effectively posts back the whole page asynchronously.

AJAX may be slightly harder to maintain/involves more setup/boilerplate code, but sends and receives less data and therefore uses less bandwidth. It should be more performant than UpdatePanels, but whether this is significant depends on a number of different factors (number of controls, page size, ViewState size, etc).

The choice is whatever fits your situation best really. What are the feature priorities of the application? If performance/bandwidth ranks over maintenance, go for AJAX. If maintenance and speed of development is importnant, maybe the choice is UpdatePanel. If this is an Intranet Application, I'd probably be less concerned about using UpdatePanels.

link|flag
vote up 0 vote down

If you have a choice, go ahead and use PageMethods with jQuery. You will be much happier in the long run. UpdatePanel is going to get better with ASP.NET 4.0, but its still inferior to to jQuery and PageMethods.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.