E-Commerce at Southern New Hampshire University
Page 2 of Downloads for IT - 695
These downloads serve as an introduction to using ASP for getting information from the user and acting on that information. For them to work correctly, you must use a server that can process ASP.
A simple example of getting information from an HTML document to an ASP document.
This file is the HTML document that gets a line of text and transfers the text to an ASP file.
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the line of text set to it by the above HTML document..
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Simple text demo.
An example of getting information from an HTML document to an ASP document and performing a simple process on the information.
This file is the HTML document that gets the first and last name of the user and transfers this to an ASP file for processing.
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document, an performs a simple process.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Simple text processing demo.
An example of getting information from an HTML document to an ASP document using check boxes.
This file is the HTML document that gets information from the user through check boxes and transfers this to an ASP file..
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Simple check box demo.
Getting information from an HTML document to an ASP document using check boxes, where the ASP document responds according to whick box(s) were checked.
This file is the HTML document that gets information from the user through check boxes and transfers this to an ASP file..
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document and responds according to the information received.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Check box selection demo.
Getting information from an HTML document to an ASP document using check boxes, where the ASP document performs calculations based on which boxes were checked.
This file is the HTML document that gets information from the user through check boxes and transfers this to an ASP file..
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document and responds according to the information received.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Check box selection/calculation demo.
Getting information from an HTML document to an ASP document using radio buttons where the ASP document responds according to the selection.
This file is the HTML document that gets information from the user through radio buttons and transfers this to an ASP file..
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document and responds according to the information received.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Radio button demo.
Allowing the user to change a properity of your web site.
This file is the HTML document that gets a desired background color from the user and causes the ASP file to display the selected color.
The HTML file. For this to work, you must change the file extension to .htm.
This file is the ASP document that receives the information set to it by the above HTML document and responds according to the information received.
The receiving ASP file. For this to work, you must change the file extension to .asp.
See it in action!
Color selection demo.
Allowing the user to select a specific record from your database.
This file is the ASP file that displays a selection of student names. The selected name is then transferred to another ASP file
The first ASP file. For this to work, you must change the file extension to .asp.
This file is the ASP document that receives the information set to it by the above HTML document and responds according to the information received.
The receiving ASP file. For this to work, you must change the file extension to .asp.
This file is the SetDB.inc document which opens the student database.
The necessary include file. For this to work, you must change the file extension to .inc.
This is the actual student database used in this demo. If you use this on your student site, be sure to put it in your db folder.
The database.
See it in action!
Data selection demo.