Diff Server Client
Diff Server Client
1) HTML
2) CSS
3) Javascript
4) VBScript
5) AJAX
HTML:
• Markup languages are computer languages that
are used to structure, format, or define
relationships between different parts of text
documents with the help of symbols or tags
inserted in the document.
• Hypertext Markup Language (HTML) is a markup
language used to create and link webpages. It
defines the basic structure of a web page and
contains meta-data about the page and a series of
elements to be displayed on the web page.
2. Server-side scripting :
• Server:
• The Server is responsible for serving the web
pages depending on the client/end-user
requirement. It can be either static or
dynamic.
Server-side scripting
• Server-side scripting is a programming
technique for creating code that run software
on the server side.
• At the server end, actions such as website
customization, dynamic changes in website
content, response creation to user requests,
database access, and many more are carried
out.
Cont.
• The server-side is made up of three parts: the
database, the server, the APIs.
• When a browser requests a page with
server-side scripting, the web server evaluates
the script before delivering the page to the
browser.
• The output is provided to the web browser
when the script is processed. The web server
hides the scripts from the end user until the
content is delivered, making the data and
source code safer.
It is the program that runs on server
dealing with the generation of content
of web page.
• 1) Querying the database
2) Operations over databases
3) Access/Write a file on server.
4) Interact with other servers.
5) Structure web applications.
6) Process user input.
• For example if user input is a text in search
box, run a search algorithm on data stored on
server and send the results.
Server-side scripting languages
• 1) PHP
2) Python
3) Ruby
Difference between client-side
scripting and server-side scripting :
Difference between Static and
Dynamic Web Pages
• Static Web pages:
• Static Web pages are very simple. It is written in
languages such as HTML, JavaScript, CSS, etc.
• For static web pages when a server receives a
request for a web page, then the server sends the
response to the client without doing any
additional process.
• These web pages are seen through a web
browser.
• In static web pages, pages will remain the same
until someone changes it manually.
Static web page