Is Ajax a consideration of client or server scenarios?

Is Ajax a client or server side scripting?

+6
source share
4 answers

The technology that coordinates the AJAX approach (i.e. javascript) is client-side, although server-side scripts / servlets are needed to respond.

+7
source

Client side scripts.

However, Microsoft has also released server controls that ajaxify their ASP.NET page, such as the updatepanel control. This is the server side. Please note that this is a specific implementation.

+2
source

client. It works only in the browser and makes requests to the server, just like request browsers do for any web page

+2
source

Ajax is the client side , but it (almost always) will access the server that provides the data.

Sometimes server-side scripts will not have any specific Ajax support, because they simply return XML-style data, but in other cases, the server may have some support, written, for example, in the popular JSONP case.

[SEPARATE RESPONSE]

0
source

Source: https://habr.com/ru/post/886396/


All Articles