These two programs are a "must have" when your creating a new web site. Place the first program
in the folder were you're creating the new site and the second one in your wwwroot folder.
(see: IIS and the wwwroot folder)
~Run.html
Replace Your_Folder_Name with the name of the Folder
you're working in and you can now double click ~Run.html and your
default.asp page will run on your localhost. I usually copy this program
into the new folder were I'm working on a new project so I can quickly get back to editing
the project. Copy and paste this code into a text file named ~Run.html.
The ~ (tilde) in front of Run is not important it just makes this file easy
to find in the folder.
This ASP program will allow you to see the Field Names and values from your HTML form.
Simply set the action attribute to: action='http://localhost/Echo.asp' and when you click
the submit button this page will pop-up with your form data. Copy and paste this code into a text
file named Echo.asp in the wwwroot folder on you computer.
<html>
<head>
<title> Echo Program </title>
</head>
<body bgcolor='darkseagreen'>
<%
Dim Item
For Each Item in Request.Form
Response.Write Item & " = "
Response.Write Request(Item) & "<br>"
Next
%>