Need HELP!!! Record Input in Field - Check box on
I have an input form where the client enter his/hr information. After they click the information is submitted to the verification.asp page which basically shows the information that the person has entered.
The problem is I can seem to get it to indicate that the person has selected the checkbox.
Everything works fine except that the checkbox produces no result when it is checked. I have bolded the troublesome area. Any assistance rendered would be appreciated...and my deepest thanks.
My code is as follows:
<%
Dim strContact , strCompany , strTelephone , strEmail , strWebsite
strContact = Request.Form("Contact")
Response.Write "Contact:"
Response.Write " "
Response.Write " "
Response.Write strContact
Response.Write "<br>"
strCompany = Request.Form("Company")
Response.Write "Company:"
Response.Write " "
Response.Write " "
Response.Write strCompany
Response.Write "<br>"
strTelephone = Request.Form ("Telephone")
Response.Write "Telephone:"
Response.Write " "
Response.Write " "
Response.Write strTelephone
Response.Write "<br>"
strEmail = Request.Form ("Email")
Response.Write "Email:"
Response.Write " "
Response.Write " "
Response.Write strEmail
Response.Write "<br>"
strWebsite = Request.Form ("Website")
Response.Write "Website:"
Response.Write " "
Response.Write " "
Response.Write strWebsite
Response.Write "<br>"
If Request.Form ("bconsultants") = "on" Then
Response.Write "You requested more information on Business Conultancy Services"
End If
%>
|