Link to home
Start Free TrialLog in
Avatar of GlobalFax
GlobalFax

asked on

Advantages/Disadvantages of using client-side scripting over HTML

Can someone please provide me some insight, in somewhat layman's terms, on the pros/cons of using client-side scripting over pure HTML.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Saqib Khan
Saqib Khan
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gladxml
gladxml

GlobalFax,

The main advantages using client side scripting over HTML is that in HTML you can only create static pages but with the addition of a client scripting language like javascript you can make dynamic pages... Changes the background at some point or controlling the screen size...

In addition since you post in an ASP basically client scripting will come in handy in validation of user input... And there two linds of validation client side and server side...

ADvantages...

The major advantages is it is faster than server side... Since you are doing the process on the client side...

Disadvantages..

If the client side scripting is disabled it will not function.


HTH...

HAppy programming...
Avatar of GlobalFax

ASKER

Although "gladxml" posted a valid response, "adilkhan" did post first and most of what "gladxml" verified.

Thanks for you pointers.

GF