Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the ASP.NET Ajax Library dead?

I've recently stumbled across a few blogs that say the ASP.NET Ajax Library is dead, in particular:

  • http://encosia.com/2010/10/04/understanding-jquerys-impact-on-microsoft-and-asp-net/
  • http://weblogs.asp.net/toddanglin/archive/2010/04/19/microsoft-ajax-client-library-is-dead-long-live-jquery.aspx

Is this generally true, technically and practically?

like image 323
Homer Avatar asked Nov 22 '10 22:11

Homer


People also ask

Can Ajax work with ASP NET?

Calling Web Services with ASP.NET AJAXAll of this can be done without resorting to postback operations. While the ASP.NET AJAX UpdatePanel control provides a simple way to AJAX enable any ASP.NET page, there may be times when you need to dynamically access data on the server without using an UpdatePanel.

What is the use of Ajax in dot net framework?

AJAX = Asynchronous JavaScript and XML. AJAX is a technique for creating fast and dynamic web pages. AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.

What is Web services in Ajax?

In AJAX-enabled Web pages, the browser makes an initial request to the server for the page, and then makes subsequent asynchronous requests to Web services for data. The client communication elements are in the form of downloaded proxy classes from the server and the core client-script library.


1 Answers

I've been to Microsoft talks on jQuery, and basically it sounded to me like they expected everyone to use jQuery for client-side-only DOM manipulation and ASP.NET Ajax was still used for it's Ajax components (like UpdatePanel) and as a basis for AJAX into .NET services made with WCF or just back to ASHX or other server code.

From being a component developer that targets ASP.NET, I can tell you that it's very much used by our customers, and we need to support it.

like image 79
Lou Franco Avatar answered Oct 19 '22 11:10

Lou Franco