| |
A dynamic web page is a kind of web page that has been prepared with fresh information (content and/or layout), for each individual viewing. It is not static because it changes with the time (ex. a news content), the user (ex. preferences in a login session), the user interaction (ex. web page game), the context (parametric customization), or any combination of the foregoing.
Creating a dynamic web page requires a certain level of previous programming experience. Having a basic understanding of a couple programming languages is essential. JavaScript is a popular language to use for creating a dynamic web page.
Creating a web page that interacts with users can be difficult, especially for beginners to web page design and programming. It requires understanding and being able to use complicated code, and can be difficult to work with if you do not have a lot of previous experience.
Two types of dynamic web sites
Client-side scripting:
Using client-side scripting to change interface behaviors within a specific web page, in response to mouse or keyboard actions or at specified timing events. In this case the dynamic behavior occurs within the presentation.
Server-side scripting and content creation:
Using server-side scripting to change the supplied page source between pages, adjusting the sequence or reload of the web pages or web content supplied to the browser. Server responses may be determined by such conditions as data in a posted HTML form, parameters in the URL, the type of browser being used, the passage of time, or a database or server state. |
|