-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
C# 7.1 and .NET Core 2.0 - Modern Cross-Platform Development - Third Edition
By :
Developing for the web is developing with HTTP.
To communicate with a web server, the client, aka user agent, makes calls over the network using a protocol known as Hypertext Transfer Protocol (HTTP). HTTP is the technical underpinning of the web. So, when we talk about web applications or web services, we mean that they use HTTP to communicate between a client (often a web browser) and a server.
A client makes an HTTP request for a resource, such as a page identified by a Uniform Resource Locator (URL), and the server sends back an HTTP response, as shown in the following diagram:

You can use Google Chrome and other browsers to record requests and responses.
Good PracticeGoogle Chrome is available on more operating systems than any other browser, and it has powerful, built-in developer tools, so it is a good first choice of browser. Always test your web application with Chrome and at least two other browsers, for example, Firefox and either...