ASP Scripts
Up Simple scripts

Simple Server-Side scripting

(Active Server Pages containing VBscript)

These pages demonstrate some simple server-side scripts. These are 'Active Server Pages', pages that run VBscript instructions on the server. Since VBscript is a Microsoft invention, ASP pages run best on Windows servers (there is a version of ASP for Unix servers called ChiliSoft ASP but in my experience it doesn't work well). The need for  a Windows server is the reason that these pages are running on a different website (check the URL above).

bulletThis page demonstrates many simple scripts including date and time.

bulletA simple form collects data and sends it on to another page.

bulletThis form asks you to choose a destination, sends the data to an ASP to process your choice into a URL and then sends you to the URL.

bulletPassword verification.

bulletThis page displays random proverbs.

bulletA calculator made using ASP (not a very good idea, because the interactivity of ASP is not within the page, it is between the pages i.e. ASP does its work as the page is being composed, before it is sent to the browser).

bulletVariables are discussed on this page, including the use of cookies and the global.asa file.

bulletHangman. This is a rather complex ASP page to show off what ASP can do, but without the code.

Simple scripts

Up Next