The article How to Create a Simple VBScript CGI Web Page shows just how easily the web application developer can use VBScript as a CGI (Common Gateway Interface) programming language. The techniques is quite...
Category: Technologies
CGI Drawbacks
CGI routines are by far the most used way for a webmaster to transfer data between his web pages and his web server. This is because CGI is one of the oldest methods, as...
Redirection
There are times when it is necessary to delete or rename a web document. Generally, it is not a good idea to just delete pages from your site, as your pages are most likely...
Denying Access
If you examine your logs, you will occasionally find that your site is being hammered by a visitor or two. These are usually spiders (automated robots which examine web sites for various reasons) although...
Custom Error Pages
These are easy to create using the .htaccess file. Just include lines of the following format in your file. ErrorDocument 404 /missing.html This causes the file “missing.html” to be displayed whenever a 404 error...
MIME Types
You can use .htaccess to define your own MIME types. What this means is you can associated file types with actions to be performed. How do you use this? Let’s stay you want .DOC...
Restricting Access To A Directory
The most common usages of .htaccess is to restrict access to all of the files within a directory. You do this by setting up a simple text file as shown below. AuthUserFile /usr3/home/tommy/Webmaster/htaccess/.htpasswd AuthName...
Cascading Style Sheets Add Consistency To Your Web Site Design
A cascading style sheet is a way to simplify your life (once you learn how to use them) and to make your web site look nice, professional and consistent. There are plenty of tutorials...
ASP (Active Server Pages) Are A Great Way To Build Sites
ASP (Active Server Pages) is the Microsoft method for doing server-side scripting. You see, JavaScript, VBScript, Java and ActiveX are methods to perform tasks on the client (the browser). For doing something like moving...