Hi all,
Can anyone tell me what is the use of Scripting Language?
What is client-side scripting?
what is server-side scripting?
Use
Moderator: General Moderators
Re: Use
It is that script which will be executed in client browser (Exmpl. JavaScript, VBS, JScript).What is client-side scripting?
You can see it in HTML source.
Thas means you can see only result of executing.what is server-side scripting?
The script which was executed you will never see.
Re: Use
Is it similar to something like a Back-end and Front-end?Defiline wrote:It is that script which will be executed in client browser (Exmpl. JavaScript, VBS, JScript).What is client-side scripting?
You can see it in HTML source.
Thas means you can see only result of executing.what is server-side scripting?
The script which was executed you will never see.
Which scripting language is very popular now?
How to identify whether a Scripting language is Server side Scripting Language or Client Side Scripting Language?
In What circumstances do we need to use both?
Is php a server side scripting language?
Re: Use
Like ...Is it similar to something like a Back-end and Front-end?
to each according to his needsWhich scripting language is very popular now?
If it is executing in your browser - client-side.How to identify whether a Scripting language is Server side Scripting Language or Client Side Scripting Language?
Exception is AJAX.
Sure.Is php a server side scripting language?
Re: Use
AJAX is not a language, but a technique.
Server-side: PHP, ASP, JAVA, ... (order doesn't represent popularity)
Client side scripting language (for websites) should be used to improve user experience, good example would be lightbox.
Server side scripting language is needed when you want dynamic content (probably this isn't accurate, but couldn't think of anything better).
Client-side: javascript is most popular, since all modern browsers support it (unless user has turned it off) and it doesn't need a plugin to run; flash - most of the users has it installedWhich scripting language is very popular now?
Server-side: PHP, ASP, JAVA, ... (order doesn't represent popularity)
Javascript, JAVA, Flash can execute on client side and on server side.If it is executing in your browser - client-side.How to identify whether a Scripting language is Server side Scripting Language or Client Side Scripting Language?
Instead of "your browser" I would say "your computer", that's more accurate because of widgets, gadgets, AIR, etc.If it is executing in your browser - client-side.
Client side scripting language (for websites) should be used to improve user experience, good example would be lightbox.
Server side scripting language is needed when you want dynamic content (probably this isn't accurate, but couldn't think of anything better).