Open
Conversation
made a change for better understanding between static and dynamic websites
Contributor
|
Preview URLs (1 page) |
chrisdavidmills
requested changes
Mar 2, 2026
Contributor
chrisdavidmills
left a comment
There was a problem hiding this comment.
@vmxarya I agree that the sentence wasn't very well-written; thanks for bring this up!
I've suggested a better fix, as I thought your suggestion was still unclear. I've simplified the existing wording, and also added a specific example. Let me know what you think.
|
|
||
| - A plain HTML file is stored on the server. When requested, it is delivered to the client, unchanged, and rendered by the browser. Because it does not change, it is referred to as "static". | ||
| - When server-side code (for example, a Python script or an ASP.NET page) generates some HTML containing data and returns that HTML to the client, the contents of the HTML change depending on what the server-side code does. It is therefore referred to as "dynamic". | ||
| - When server-side code (for example, a Python script or an ASP.NET page) generates some HTML containing data and returns that HTML to the client, the contents of the HTML change depending on what the client wants. It is therefore referred to as "dynamic". |
Contributor
There was a problem hiding this comment.
Suggested change
| - When server-side code (for example, a Python script or an ASP.NET page) generates some HTML containing data and returns that HTML to the client, the contents of the HTML change depending on what the client wants. It is therefore referred to as "dynamic". | |
| - Server-side code (such as a Python script or an ASP.NET page) generates HTML content that varies depending on what data is passed to it, and then returns that HTML to the client. It is therefore referred to as "dynamic". For example, the same weather forecast page can show different data depending on whether the weather is sunny or rainy, what location the user is in, and what their preferences are (some users want to see pollen count and humidity, whereas others may not care about that data and might select preferences to hide it). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Made a change for better understanding between static and dynamic websites
Description
making an explanation more understandable, and now I can better understand why sites need to be dynamic ( because clients made a change to them ! )
Motivation,
when I was reading it, I didn't see myself in it!
Additional details
The dynamic part of the explanation is too technical; I didn't understand it when I first read it. It uses a phrase twice without providing any understanding of what the user is doing here.
Related issues and pull requests