Here is new code for my problem with this questionnaire. I am still not getting an output for the choices selected. Any ideas?

<html>

<%
Option Explicit

Dim reason
Dim response
Dim resolved
Dim rate
Dim offer


<head>

<title>
  eLMS Feedback Form Process
</title>



<body bgcolor = "white">




reason = Request.Form(" reason")
response = Request.Form ( " response ")
resolved = Request.Form( " resolved ")
rate = Request.Form( " rate ")

if reason <>"" then
	
	<b>  Reason for contacting:</b>


	Select Case reason
	
		Case " zero " 
			offer = "Unable to login eLMS"
		
		Case " one "
			offer = " Unable to connect to eLMS login page"
		
		Case " two "
			offer = " Password reset request "

		Case " three "
			offer = " Unable to launch course "

		Case " four "
			offer = " Course progress is not being saved "

		Case " five "
	
			offer = " Unable to print report or completion certificate "

		Case " six "

			offer = " Received e-mail message concerning Learning Expiration Notification "

		Case " seven "
	
			offer = " Other "
	End Select
End If

if response <> "" then
	
	<b>  Response Time:</b>


	Select Case response

		Case " zero " 
			offer = "Under 1 hour"
		
		Case " one "
			offer = " 2 - 6 hours"
		
		Case " two "
			offer = " 6 - 12 hours "

		Case " three "
			offer = " 1 business day "

		Case " four "
			offer = " More than 1 business day "

		Case " five "
	
			offer = " They did not reply to my e-mail "

		Case " six "

			offer = " Received e-mail message concerning Learning Expiration Notification "

		
	End Select
End If

if resolved <> "" then

	<b>  Issue Resolved:</b>

	Select Case resolved

		Case " zero " 
			offer = "Yes"
		
		Case " one "
			offer = "NO"
	
	End Select

End If	


				

if rate <>"" then

	<b>  Rate Service:</b> 

	Select Case rate
	
		Case " zero " 
			offer = "Very Satisfied"
		
		Case " one "
			offer = " Satisfied"
		
		Case " two "
			offer = " Neutral "

		Case " three "
			offer = " Unsatisfied "

		Case " four "
			offer = " Extremely unsatisfied "

		
	End Select
End If

%>







<h1>
FORM OUTPUT
</h1>


<hr>


</html>

</head>
<html>
<h1><STRONG><var>eLMS </var>Helpdesk</STRONG></h1>
<form>
<!--<td><STRONG>Dear<%=cookie.username%></STRONG><br>-->

<td><STRONG>You recently sent an email to the <var>eLMS </var>Helpdesk regarding a concern or problem you experienced with the new <var>eLMS</var> ( Learning Management System ).   Please complete this Customer Satisfaction Survey concerning the service you were provided.</STRONG><br>
</td></tr></form>

<!--<form method="post" action="processform.asp">  -->

<form method="post" action="feedback_form_process2.asp">
<table border="1" bgcolor="#98AFC7">

<tr>
<td align="center">
<br>    <br>
<blockquote>

<!--First Name: <input type="text" size="25" name="f1"><br> 
Last Name: <input type="text" size="25" name="f2"><br>-->

<br>
<DIV align="center "><TABLE>
<br>
<STRONG>What was your reason for contacting the <var>eLMS</var> Help Desk? 
 </STRONG>
<br>




<input type="radio" name = "reason" value = "zero">Unable to login to eLMS<br>
<input type="radio" name = "reason" value = "one">Unable to connect to eLMS login page<br>
<input type="radio" name = "reason" value = "two">Password reset request<br>
<input type="radio" name = "reason" value = "three">Unable to launch course<br>
<input type="radio" name = "reason" value = "four">Course progress is not being saved<br>
<input type="radio" name = "reason" value = "five">Unable to print report or completion certificate<br>
<input type="radio" name = "reason" value = "six">Received e-mail message concerning Learning Expiration Notification<br>
<input type="radio" name = "reason" value = "seven">Other<br>


<br>
<STRONG>How long did it take to get a response to your e-mail?</STRONG><br>



<input type="radio" name = "response" value = "zero">Under 1 hour<br>
<input type="radio" name = "response" value = "one">2 - 6 hours<br>
<input type="radio" name = "response" value = "two">6 - 12 hours<br>
<input type="radio" name = "response" value = "three">1 business day<br>
<input type="radio" name = "response" value = "four">More than 1 business day<br>
<input type="radio" name = "response" value = "five">They did not reply to my e-mail<br>




<br>
<STRONG>Was your problem or issue resolved?</STRONG><br>



<input type="radio" name = "resolved" value = "zero">Yes<br>
<input type="radio" name = "resolved" value = "one">No<br>






<br>
<STRONG>Overall, how would you rate your customer service experience?</STRONG><br>



<input type="radio" name = "rate" value = "zero">Very Satisfied<br>
<input type="radio" name = "rate" value = "one">Satisfied<br>
<input type="radio" name = "rate" value = "two">Neutral<br>
<input type="radio" name = "rate" value = "three">Unsatisfied<br>
<input type="radio" name = "rate" value = "four">Extremely unsatisfied<br>

</TABLE>


</DIV>

<br><STRONG>Do you have any comments or suggestions that would help us improve our <var>eLMS</var> customer service?   </STRONG>

<textarea name="comments" rows="5" cols="50">
</textarea><br><br>


<input type="submit" value="SUBMIT" name="action">
<input type="reset" value="RESET">
<!--<a href="C:\Documents and Settings\Administrator.ARC00WN82534000\Desktop\FAA eLMS feedback formradio.html">Feedback</a></font></p> -->
</blockquote>
<br>

Recommended Answers

All 2 Replies

What language is that in O.o

The language is ASP and HTML.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.