1 / 16

Server-Side vs. Client-Side Scripting Languages

Server-Side vs. Client-Side Scripting Languages. What are they and what are their differences?. By Lories Slockbower. What is server-side scripting?.

baxter
Télécharger la présentation

Server-Side vs. Client-Side Scripting Languages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Server-Side vs. Client-Side Scripting Languages What are they and what are their differences? By Lories Slockbower

  2. What is server-side scripting? Server-side scripting is a method of programming for the web that runs software on the server rather than the browser or installed plugins to create dynamic web pages. Languages used for these tasks are normal programming languages which include Perl, PHP, JSP, Ruby, ColdFusion, and Python

  3. What can server scripts do? • Customize a web page and dynamically change its contents • Respond to queries from users or from HTML forms • Access database and send the information back to the browser

  4. Advantages of server-side scripting User does not need to download plugins like Java or Flash User can create one template for the entire website The site can use a content management system which makes editing simpler. Generally quicker to load than client-side scripting User is able to include external files to save coding Scripts are hidden from view so it’s more secure. Users only see the HTML output.

  5. Disadvantages of server-side scripting • The scripts can be used by attackers to access the server. They do this by changing the URL to something that takes advantage of a hole in security. System administrators must keep all server-side scripting updated and use an application firewall to prevent this. • Scripting software must be installed on the content management system tools in order to store the dynamic data.

  6. Common server-side scriptinglanguages • ASP/ASP.net –Active Server Pages developed by Microsoft to make advanced web pages. Unix servers use Chillisoft ASP. Allows user to get any .net-enabled language to program a site. • JSP/Servlets – Java Server Pages which include JSP tags mixed in with html. Most popular language for higher level applications. • ColdFusion – Runs on top of a JSP/servlet engine. Can cost $1,299 a server. Users can download a free “developer” edition but that is limited to one IP address.

  7. Server-side scripting example ASP source: Output result Hello world! <html> <body> <% response.write("Hello World!")%> </body> </html>

  8. More server-side scripting languages • Perl – Practical Extraction and Reporting Language, first released in 1987, is a powerful language with advanced features. Available for free from various scripting directories. Supported by operating systems UNIX, MAC OS 7-9 and • PHP or PHP Hypertext Preprocessor is an open source language. Considered by “standard’ choice for server side scripting in Unix/Linux platforms. • Python- Created in 1989, it is not supported by most web hosting companies. Although easy to learn, there is no standard web application framework for it.

  9. What is client-side scripting language? • Client-side scripts are placed within an HTML document in the user’s web browser rather than the web server to allow greater interactivity in a document. For example – client-side scripting could check the user’s form for errors before submitting it • Enables web pages to change content according to user input and other variables, including the time of day. Can also be stored in a separate file that is referenced to the documents that use it.

  10. How does it work? • Usually, JavaScript code starts with the tag <script language="JavaScript"> and ends with the tag </script>. • Files are first sent to the user’s computer by the web server which executes the script and displays the document. • The client-side script may also include browser directions based on certain user functions such as clicking buttons. • Frequently, you can see the the source card by viewing the file that contains the script.

  11. Example of client-side scripting • Suppose a person completes a form but omits information. When they slick the submit button, an alert box appears telling them about the mistake. • This is JavaScript and is an example of Client Side Scripting because all the activity takes place inside the browser.>

  12. Advantages of client-side scripting • Allows for more interactivity • Can perform actions quickly without going to the server • May be easier to use for those whose browsers don’t support scripts • Are available from many free resources such as Hotscripts.com and Javascript.com

  13. Disadvantages of client-side scripts • If the user’s browser is out of date, the website will not display properly. • More quality assurance testing is required because different browsers support scripts differently • Not secure because anyone can look at the code in the page source • Some browsers will disable the active content and tell the user they may be harmful.

  14. Client-side scripting language • JavaScript – Not to be confused with Java, JavaScript client-side is a programming language is implemented as part of the web browser to enhance dynamic websites • VBScript is a programming language that can manipulate the document objects and the browser

  15. So how to know which to use? • Know your audience – Be sure to know what scripts work best with the browsers your audience will use. JavaScript is most compatible with Microsoft Internet Explorer and Netscape. VBScript usually just works on Internet Explorer. • Test scripts on the browsers for both PC and MAC users as browsers on the MACs don’t support scripts as well as the PC versions do. • Scripts should be tested on at least the previous two versions of your audience’s browser since people are slow to update their browsers so the latest scripts may not work.

  16. http://www.w3schools.com/web/web_scripting.asp • http://www.serverschool.com • http://en.wikipedia.org/wiki/JavaScript • http://opensourcetutorials.com/Design-And-Layout/Usability/web-widgets • http://htmlhelp.com/reference/html40/special/script.html • http://astahost.com/info.php/serverside-clientside_t16081.html • http://exforsys.com/tutorials/client-server/server-side-scripting.html • http://www.ehow.co.uk/how_8426161_remove-client-side-scripting.html • http://www.webdesignerdepot.com/2009/11/coding-a-web-design-for-speed-and-quality/ • http://www.google.com/imgres?imgurl=http://nas.uhcl.edu/yang/research/webdevelopmentcourse/clientSideScripting.gif& • http://rentacomputertoday.com/tag/computer-hackers/ • http://www.w3schools.com/asp/showasp.asp?filename=demo_text • http://whatismyipaddress.ricmedia.com/help/JavaScript/about/ References

More Related