ASP.NET AJAX or jQuery (UpdatePanel/ScriptManager or UFrame/jQuery.ajax)
Posted
by Mark Redman
on Stack Overflow
See other posts from Stack Overflow
or by Mark Redman
Published on 2009-08-18T10:02:17Z
Indexed on
2010/04/25
12:33 UTC
Read the original article
Hit count: 308
Hi,
We use the asp.net UpdatePanel and the ScriptManager/ScriptManagerProxy for ajax related functionality; reducing full page refreshes and calling WCF Services respectively. we also use jQuery and plugins for some parts of the UI.
We have had some issues with javascript library related conflicts, but have come across some posts indicating that there is a lot more overhead using the UpdatePanel.
I have found some limited reference to UFrame:
http://www.codeproject.com/KB/aspnet/uframe.aspx
Is this a commercially viable replacement for the asp.net UpdatePanel?
We use a ScriptManagerProxy to reference WCF services and easily create and use a proxy to call the various WCF service methods.
Would using jQuery ajax be a more efficient solution here? We have got this working well on various browsers but now seem to be getting some security related issues (as seen in FF Firebug: Access to restricted URI denied" code: "1012) which seem to have started since using jQuery a lot more.
Is it possible/viable to not use ASP.NET Ajax at all?
© Stack Overflow or respective owner