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

Solution to Incorrect string value in MySQL

Many friends will report the following error when...

Docker-compose one-click deployment of gitlab Chinese version method steps

1. Introduction to gitlab Gitlab official address...

Detailed analysis of javascript data proxy and events

Table of contents Data Brokers and Events Review ...

Why should MySQL fields use NOT NULL?

I recently joined a new company and found some mi...

Solution to the conflict between two tabs navigation in HTML

Let's start with a description of the problem...

The most complete package.json analysis

Table of contents 1. Overview 2. Name field 3. Ve...

How to modify the initial password of a user in mysql5.7

When users install MySQL database for the first t...

Detailed explanation of global parameter persistence in MySQL 8 new features

Table of contents Preface Global parameter persis...

Docker-compose creates a bridge, adds a subnet, and deletes a network card

1. Create a docker network card [root@i ~]# brctl...

Research on the problem of flip navigation with tilted mouse

In this article, we will analyze the production of...

JavaScript generates random graphics by clicking

This article shares the specific code of javascri...

Linux kernel device driver advanced character device driver notes

/****************** * Advanced character device d...