Web Development Primer

DHTML

DHTML, or Dynamic HyperText Markup Language is a collection of coding languages like HTML, CSS, JavaScript. It allows a web site developer to build dynamic abilities into what would normally be a static web page. What this means is that a web page may be changed after it has been loaded using DHTML. This provides a basis for many useful capabilities, and can make web pages interactive, or feel more alive. The major browsers that support DHTML are the fourth and fifth generation versions of Microsoft Internet Explorer and Netscape Navigator. DHTML is really nothing more than a buzz-word that can be used to describe just about any implementation of JavaScript and CSS.

Java

Java was developed by Sun Microsystems and is a programming language with complete functionality like that of C++. Java's original goal was to be completely portable to any platform, and it is. However, at this point, Java's niche is on the World Wide Web since it is one of the few areas when you'd need a program to work on any platform. Probably the most important things that Java brings to the Web are the capacity for more interactivity on the Internet through multimedia and animation. Most modern browsers have support for Java.

Java applets are a hybrid form of Java programs to run on a Java-compliant browser on the World Wide Web. An applet is one or more .class files which together form a program. Unlike other types of program, applets are designed to be run from within a web (HTML) page. In this way, they differ from scripts such JavaScript which are text commands typed into the HTML page itself. Some common use of Java applets include image slideshows, and chat rooms. Java applets are pretty much the most powerful client side application you can use on your website.

Server Side Technologies

Server side technologies are what you need to use if you want to take your Web site to the next level. Server-side technologies can be regarded as those technologies that enable you to dynamically generate your websites. Let's take a quick example to get things clearer. Take Amazon.com for example., Amazon won't make separate web page for each of their products. If you pay close attention to an Amazon.com page, you'll notice that it has many contents that are presented depending on the product you are viewing like 'related products', 'product reviews'. That's not all! You'll notice that you can post a product review on the site, and it'll appear instantly. Do you think that there's someone behind the screen to paste your review and save it as an HTML page for you to view on your browser?! No! And if I can recall back from my statistic classes, the number of different page combination and permutation, would certainly exceed thousands of Gigabytes!

So here comes the wonders and magic of server side technologies. Come to think that the 'someone' we mentioned earlier is the web server. So the task of generating HTML pages is left to that of the server. The instructions needed to decide on what content are to be included in the HTML page is made possible through CGI or server scripting languages which will be discussed later in this article. To thoroughly understand the significance of server-side programming languages, it is appropriate to examine the weakness of HTML. HTML produces static web pages, or web pages that never automatically change. To alter any static page, you must make it happen.

A server side document using an interpreted programming language can be written in a simple text editor and then uploaded to your web server. When someone makes a request for a page from his web browser the script file is sent to the appropriate interpreter, the code is executed, and HTML is automatically. The resulting document is pure HTML, and the user requesting the document, will never see the actual scripting language. By making use of server side technologies you turn your website into an application that can not only display data, but also store and process it. You can build highly interactive web applications, customized to user preferences. Web applications can be made to interact with databases or other files, to store data, retrieve data, and manipulate data. More examples and applications will be given throughout this section.