Link to home
Start Free TrialLog in
Avatar of nightshadz
nightshadzFlag for United States of America

asked on

How much overhead does AJAX add to a web application?

I want to use the AJAX ModalPopup Extender control on a few of my ASP pages to make some data entry tasks more user friendly.  How much, if any, overhead does enabling AJAX in a web application create?  Is there any reason I should avoid using AJAX in my application?  Someone on my web team seems completely against AJAX and I'm trying to understand why.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of jabcoco
jabcoco
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In addition to that, use updatepanel only when you want to update parts asynchronously without having to send the entire page.
The only drawback is that it can cause lot of overhead on the client side
Avatar of nightshadz

ASKER

http://www.telerik.com/products/aspnet-ajax.aspx ... Wow, for $1k I'd rather spend the time learning to writing them all myself =)

I haven't really used AJAX a whole lot so it's still new to me but I keep hearing bad things about it.  So the only AJAX control to keep an eye on would be the UpdatePanel?  Under what scenarios would AJAX cause problems in your web app?

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the info!