I created a form, cabreg.asp, with a "Send" button and cdosys_form.asp script. However, I got the message "Page cannot be displayed" Please help and here are my files
---- CABREG.ASP -----
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>CAB Registration</title>
</head>
<body>
<!--%
'************************************************* *******************'
' Title : cabreg.asp '
' Author : Jennifer Pham '
' Modified by : '
' Date : '
' Form : This is a CAB Registration form. '
'************************************************* *******************'
%-->
<form action="cdosys_form.asp" method="post" enctype="multipart/form-data" name="cabreg" id="cabreg">
<p align="center"><img src="CAB Heading - Denver 06.jpg" width="650" height="97"></p>
<p align="center" class="style1">Denver CAB Registration Form</p>
<div align="center">
<table width="386" border="1">
<tr>
<td width="200">Name:</td>
<td width="200"><input name="name" type="text" id="name" size="50"></td>
</tr>
<tr>
<td width="200">Job Title:</td>
<td width="200"><input name="title" type="text" id="title" size="50"></td>
</tr>
<tr>
<td width="200">Department/Agency</td>
<td width="200"><input name="agency" type="text" id="agency" size="50"></td>
</tr>
<tr>
<td width="200">Bureau:</td>
<td width="200"><input name="bureau" type="text" id="bureau" size="50"></td>
</tr>
<tr>
<td width="200">Address:</td>
<td width="200"><input name="address" type="text" id="address" size="50"></td>
</tr>
<tr>
<td width="200">City: </td>
<td width="200"><input name="city" type="text" id="city" size="40"></td>
</tr>
<tr>
<td width="200">State:</td>
<td width="200"><input name="state" type="text" id="state" size="40"></td>
</tr>
<tr>
<td width="150">Zip:</td>
<td width="150"><input name="zip" type="text" id="zip" size="40"></td>
</tr>
<tr>
<td width="150">Telephone:</td>
<td width="150"><input name="telephone" type="text" id="telephone" size="25"></td>
</tr>
<tr>
<td width="150">Facsimile:</td>
<td width="150"><input name="facsimile" type="text" id="facsimile" size="25"></td>
</tr>
<tr>
<td width="200">E-Mail:</td>
<td width="200"><input name="email" type="text" id="email" size="50"></td>
</tr>
</table>
</div>
<div align="center">
<table width="674" border="1">
<tr>
<td width="500"><p>I would like to attend the CAB group dinner at The Fort:
</td>
<td width="357"><input name="Dinner" type="radio" value="Yes">
Yes
<input name="Dinner" type="radio" value="No">
No</td>
</tr>
<tr>
<td><blockquote>If yes – select a menu option:</blockquote></td>
<td>
<input name="menu" type="radio" value="Sirloin">
Top Sirloin<br>
<input name="Menu" type="radio" value="Lamb">
Lamb Chops<br>
<input name="Menu" type="radio" value="Salmon">
Salmon<br>
<input name="Menu" type="radio" value="Chicken">
Chicken<br>
</tr>
<tr>
<td width="500"><p>I would like to attend the tour of the U.S. Denver Mint::
</td>
<td width="357"><input name="Tour" type="radio" value="Yes">
Yes
<input name="Tour" type="radio" value="No">
No</td>
</tr>
<tr>
<td width="500"><p>I would like my confirmation package sent via:
</td>
<td width="357"><input name="Sendoption" type="radio" value="Email">
E-Mail
<input name="Sendoption" type="radio" value="Fax">
Fax</td>
</tr>
</table>
</div>
<p align="center"><strong>Fax or email this registration form no later than July 31, 2006 to</strong>:</p>
<p align="center">San Francisco Financial Center<br>
<a href="mailto:pib@fms.treas.gov"><strong>pib@fms.tr eas.gov</strong></a><br>
Fax: 510-594-7341<br>
</p>
<p align="center">
<input type="submit" name="Submit" value="Send">
<input name="Reset" type="reset" id="Reset" value="Reset">
</p>
</form>
</body>
</html>
--- CDOSYS_FORM.ASP ----
<!--%
'************************************************* *******************'
' Title : cdosys_form.asp '
' Author : Jennifer Pham '
' Modified by : '
' Date : '
' Main Function: This script is used to send the registration '
'************************************************* *******************'
%-->
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim cabreg
Dim cabregcon
Dim flds
Dim inbody
Dim inname
Dim intitle
Dim inagency
Dim inbureau
Dim inaddress
Dim incity
Dim instate
Dim inzip
Dim intelephone
Dim infacsimile
Dim inemail
Dim inDinner
Dim inMenu
Dim inTour
Dim inSendoption
inname = Request.Form("name")
intitle = Request.Form("title")
inagency = Request.Form("agency")
inbureau = Request.Form("bureau")
inaddress = Request.Form("address")
incity = Request.Form("city")
instate = Request.Form("state")
inzip = Request.Form("zip")
intelephone = Request.Form("telephone")
infacsimile = Request.Form("facsimile")
inemail = Request.Form("email")
inDinner = Request.Form("Dinner")
inMenu = Request.Form("Menu")
inTour = Request.Form("Tour")
inSendoption = Request.Form("Sendoption")
Inbody = "DENVER CAB REGISTRATION FORM & vbcrlf
Inbody = Inbody & "Name: "& inname & vbcrlf
Inbody = Inbody & "Title: "& intitle & vbcrlf
Inbody = Inbody & "Agency: "& inagency & vbcrlf
Inbody = Inbody & "Bureau: "& inbureau & vbcrlf
Inbody = Inbody & "Address: "& inaddress & vbcrlf
Inbody = Inbody & "City: "& incity & vbcrlf
Inbody = Inbody & "State: "& instate & vbcrlf
Inbody = Inbody & "Zip: "& inzip & vbcrlf
Inbody = Inbody & "Telephone: "& intelephone & vbcrlf
Inbody = Inbody & "Facsimile: "& infacsimile & vbcrlf
Inbody = Inbody & "E-mail: "& inemail & vbcrlf
Inbody = Inbody & "Attend the CAB group dinner: "& inDinner & vbcrlf
Inbody = Inbody & "Choice for dinner: "& inMenu & vbcrlf
Inbody = Inbody & "Attend the tour: "& inTour & vbcrlf
Inbody = Inbody & "Package sent via: "& inSendoption & vbcrlf
Set cabreg = Server.CreateObject("CDO.Message")
set cabregcon = Server.CreateObject("CDO.Configuration")
Set flds = cabregcon.Fields
cabregcon.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
cabregcon.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "dm4.publicdebt.treas.gov"
cabregcon.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
cabregcon.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
cabregcon.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
cabregcon.Configuration.Fields.Update
Set cabreg.Configuration = cabregcon
cabreg.From = inname
cabreg.To = "sfc@fms.treas.gov"
cabreg.Subject = "Denver CAB Registration"
cabreg.TextBody = Inbody
cabreg.Send
Set cabreg = Nothing
Set cabregcon = Nothing
set flds = Nothing
Response.Write("The e-mail has been sent")
%>