Description of the execution mechanisms of static pages and dynamic pages

Description of the execution mechanisms of static pages and dynamic pages
1. A static page means that there are only HTML tags in the web page. As long as the WEB developers have not modified these HTML tags, the page content will not change.

Working mechanism of static pages:

1. Use HTML to write static pages and publish them to the WEB server;

2. The client requests the static page through the browser;

3. The web server locates the static page based on the request;

4. The static page is returned to the client in the form of HTML stream;

5. The client browser interprets the HTML stream and displays it as a WEB page.

2. A dynamic page means that the web page contains not only HTML code, but also program code, which can display different results based on different content input by the client.

Working mechanism of dynamic pages:

1. Use dynamic WEB development technology to write WEB applications, i.e. dynamic pages, and publish them to the WEB server;

2. The client requests the dynamic page through the browser;

3. The web server locates the web application;

4. The WEB server compiles or interprets the WEB application according to the client's request and generates an HTML stream;

5. Return the generated HTML to the client in the form of a stream;

6. The client browser interprets the HTML stream and displays it as a WEB page.

<<:  CSS3 realizes text relief effect, engraving effect, flame text

>>:  Introduction and examples of hidden fields in HTML

Recommend

How to implement Vue binding class and binding inline style

Table of contents Binding Class Binding inline st...

Solve the problem of docker pull image error

describe: Install VM under Windows 10, run Docker...

A brief analysis of MySQL cardinality statistics

1. What is the cardinality? Cardinality refers to...

Is it necessary to give alt attribute to img image tag?

Do you add an alt attribute to the img image tag? ...

Solution to large line spacing (5 pixels more in IE)

Copy code The code is as follows: li {width:300px...

Mini Program Recording Function Implementation

Preface In the process of developing a mini progr...

In-depth understanding of umask in new linux file permission settings

Preface The origin is a question 1: If your umask...

Steps to deploy multiple tomcat services using DockerFile on Docker container

1. [admin@JD ~]$ cd opt #Enter opt in the root di...

Example of how to set automatic creation time and modification time in mysql

This article describes how to set the automatic c...

Complete steps for mounting a new data disk in CentOS7

Preface I just bought a new VPS. The data disk of...

Vue implements an example of pulling down and scrolling to load data

Table of contents Step 1: Installation Step 2: Ci...

Two box models in web pages (W3C box model, IE box model)

There are two types of web page box models: 1: Sta...