what is difference between client side scripting and server
side scripting?

Answer Posted / prabhkirat kaur

Client-side scripts are often embedded within an HTML
document (hence known as an "embedded script"), but they
may also be contained in a separate file, which is
referenced by the document (or documents) that use it
(hence known as an "external script"). Upon request, the
necessary files are sent to the user's computer by the web
server (or servers) on which they reside. The user's web
browser executes the script, then displays the document,
including any visible output from the script. Client-side
scripts may also contain instructions for the browser to
follow if the user interacts with the document in a certain
way, e.g., clicks a certain button. These instructions can
be followed without further communication with the server,
though they may require such communication.

erver-side scripting is a web server technology in which a
user's request is fulfilled by running a script directly on
the web server to generate dynamic web pages. It is usually
used to provide interactive web sites that interface to
databases or other data stores. This is different from
client-side scripting where scripts are run by the viewing
web browser, usually in JavaScript. The primary advantage
to server-side scripting is the ability to highly customize
the response based on the user's requirements, access
rights, or queries into data stores

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the similarity between the 1st and 2nd statement?

722


What is called variable?

669


Why typeof null is object?

760


What is unobtrusive javascript? How to add behavior to an element using javascript?

725


Can you assign an anonymous function to a variable and pass it as an argument to another function?

694


Can you access Cookie using javascript?

762


How onclick works in javascript?

683


How to load another html page from javascript?

735


Is function a data type in javascript?

727


How do you write a comment in javascript?

643


What is the use of Void(0)?

838


How can JavaScript be used?

719


What are javascript functions?

678


Where do I put javascript code in html?

739


How do you target a specific frame from a hyperlink?

701