Coding Samples and Tutorial Pages

Here you will find samples and tutorials on how to perform tasks with ASP and Javascript.  The examples on this site come from some of the more frequently asked questions I have seen on some ASP and Javascript development forums.  I am providing the solutions here to have the answers to these questions available in a single location.

Title Language Description
Address Book Sample Updated! ASP A simple database application designed to show new ASP developers how to display data from a database, Insert data into a table and update an existing record in a table.
ASP Form Validation Example ASP This is a bit more advanced version of the Address Book Sample.  It does checking to ensure that certain fields are filled in and have valid data.
JavaScript Form Validation Example JS This example provides a similar end result as the ASP Form Validation Example, but does the validation on the same page as the form without having to submit the page before validation.
Linked Drop Down Boxes AJAX, ASP,
JS, PHP
This series of examples shows several ways of creating dynamic dropdown boxes that allows the selection of one drop down to determine the options in another drop down.
Javascript TreeView JS This Tree View app is well documented and is designed as a learning tool.  This will show how to perform many functions in Javascript. Can be used from ASP
WebPage to PDF ASP This sample will allow you to enter any web page address and will turn that into a PDF file.  This uses a PDF creation tool abcPDF by websupergoo.  www.websupergoo.com
SQL Cross-Tab Query SQL This tutorial shows you how to create a cross-tab query that will work in most data-base situations.
Dual List Box JS This tutorial shows you how to create dual list-boxes that allow you to move options from one box to the other. A lot of good information on list-boxes and drop-down boxes.
Modal Dialog Box JS This tutorial shows how to create a cross-browser modal dialog box. This is a dialog box which must be closed before the juer can continue working on the page.