Internet Technologies 简明教程

Websites Overview

网站是 Web 上经过 Web 服务器托管的位置。它是一组相关联的网页。使用称为统一资源定位器的互联网地址访问它

Website is a location on web and is hosted on a web server. It is a set of related web pages. It is accessed using Internet address known as Uniform Resource Locator

Static Websites

Static websites 也被称为平面或静态网站。它们将按照其在 Web 服务器上存储的方式加载到客户的浏览器。此类网站仅包含静态信息。用户只能阅读信息,但不能对其进行任何修改或与之进行交互。

Static websites are also known as flat or stationary websites. They are loaded on the client’s browser as exactly they are stored on the web server. Such websites contain only static information. User can only read the information but can’t do any modification or interact with the information.

静态网站只使用 HTML 创建。只在不再需要修改信息时使用静态网站。

Static websites are created using only HTML. Static websites are only used when the information is no more required to be modified.

internet static web page

Dynamic Websites

Dynamic websites 在不同的时间点显示不同的信息。可以在不加载整个网页的情况下更改网页的一部分。使用 Ajax 技术使这成为可能。

Dynamic websites shows different information at different point of time. It is possible to change a portion of a web page without loading the entire web page. It has been made possible using Ajax technology.

Server-side dynamic web page

它通过使用服务器端脚本来创建。有一些服务器端脚本参数用于确定如何组装一个新的网页,其中还包括设置更多客户端处理。

It is created by using server-side scripting. There are server-side scripting parameters that determine how to assemble a new web page which also include setting up of more client-side processing.

Client-side dynamic web page

使用客户端脚本(如 javascript)对其进行处理。然后将其传递到 Document Object Model (DOM).

It is processed using client side scripting such as javascript. And then passed in to Document Object Model (DOM).

internet dynamic web page