radio button no display??

Reply

Join Date: Jun 2005
Posts: 92
Reputation: djbsabkcb is an unknown quantity at this point 
Solved Threads: 0
djbsabkcb's Avatar
djbsabkcb djbsabkcb is offline Offline
Junior Poster in Training

radio button no display??

 
0
  #1
Aug 8th, 2005
Here is new code for my problem with this questionnaire. I am still not getting an output for the choices selected. Any ideas?



  1.  
  2.  
  3. <html>
  4.  
  5. <%
  6. Option Explicit
  7.  
  8. Dim reason
  9. Dim response
  10. Dim resolved
  11. Dim rate
  12. Dim offer
  13.  
  14.  
  15. <head>
  16.  
  17. <title>
  18. eLMS Feedback Form Process
  19. </title>
  20.  
  21.  
  22.  
  23. <body bgcolor = "white">
  24.  
  25.  
  26.  
  27.  
  28. reason = Request.Form(" reason")
  29. response = Request.Form ( " response ")
  30. resolved = Request.Form( " resolved ")
  31. rate = Request.Form( " rate ")
  32.  
  33. if reason <>"" then
  34.  
  35. <b> Reason for contacting:</b>
  36.  
  37.  
  38. Select Case reason
  39.  
  40. Case " zero "
  41. offer = "Unable to login eLMS"
  42.  
  43. Case " one "
  44. offer = " Unable to connect to eLMS login page"
  45.  
  46. Case " two "
  47. offer = " Password reset request "
  48.  
  49. Case " three "
  50. offer = " Unable to launch course "
  51.  
  52. Case " four "
  53. offer = " Course progress is not being saved "
  54.  
  55. Case " five "
  56.  
  57. offer = " Unable to print report or completion certificate "
  58.  
  59. Case " six "
  60.  
  61. offer = " Received e-mail message concerning Learning Expiration Notification "
  62.  
  63. Case " seven "
  64.  
  65. offer = " Other "
  66. End Select
  67. End If
  68.  
  69. if response <> "" then
  70.  
  71. <b> Response Time:</b>
  72.  
  73.  
  74. Select Case response
  75.  
  76. Case " zero "
  77. offer = "Under 1 hour"
  78.  
  79. Case " one "
  80. offer = " 2 - 6 hours"
  81.  
  82. Case " two "
  83. offer = " 6 - 12 hours "
  84.  
  85. Case " three "
  86. offer = " 1 business day "
  87.  
  88. Case " four "
  89. offer = " More than 1 business day "
  90.  
  91. Case " five "
  92.  
  93. offer = " They did not reply to my e-mail "
  94.  
  95. Case " six "
  96.  
  97. offer = " Received e-mail message concerning Learning Expiration Notification "
  98.  
  99.  
  100. End Select
  101. End If
  102.  
  103. if resolved <> "" then
  104.  
  105. <b> Issue Resolved:</b>
  106.  
  107. Select Case resolved
  108.  
  109. Case " zero "
  110. offer = "Yes"
  111.  
  112. Case " one "
  113. offer = "NO"
  114.  
  115. End Select
  116.  
  117. End If
  118.  
  119.  
  120.  
  121.  
  122. if rate <>"" then
  123.  
  124. <b> Rate Service:</b>
  125.  
  126. Select Case rate
  127.  
  128. Case " zero "
  129. offer = "Very Satisfied"
  130.  
  131. Case " one "
  132. offer = " Satisfied"
  133.  
  134. Case " two "
  135. offer = " Neutral "
  136.  
  137. Case " three "
  138. offer = " Unsatisfied "
  139.  
  140. Case " four "
  141. offer = " Extremely unsatisfied "
  142.  
  143.  
  144. End Select
  145. End If
  146.  
  147. %>
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155. <h1>
  156. FORM OUTPUT
  157. </h1>
  158.  
  159.  
  160. <hr>
  161.  
  162.  
  163. </html>
  164.  
  165. </head>



  1.  
  2. <html>
  3. <h1><STRONG><var>eLMS </var>Helpdesk</STRONG></h1>
  4. <form>
  5. <!--<td><STRONG>Dear<%=cookie.username%></STRONG><br>-->
  6.  
  7. <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>
  8. </td></tr></form>
  9.  
  10. <!--<form method="post" action="processform.asp"> -->
  11.  
  12. <form method="post" action="feedback_form_process2.asp">
  13. <table border="1" bgcolor="#98AFC7">
  14.  
  15. <tr>
  16. <td align="center">
  17. <br> <br>
  18. <blockquote>
  19.  
  20. <!--First Name: <input type="text" size="25" name="f1"><br>
  21. Last Name: <input type="text" size="25" name="f2"><br>-->
  22.  
  23. <br>
  24. <DIV align="center "><TABLE>
  25. <br>
  26. <STRONG>What was your reason for contacting the <var>eLMS</var> Help Desk?
  27. </STRONG>
  28. <br>
  29.  
  30.  
  31.  
  32.  
  33. <input type="radio" name = "reason" value = "zero">Unable to login to eLMS<br>
  34. <input type="radio" name = "reason" value = "one">Unable to connect to eLMS login page<br>
  35. <input type="radio" name = "reason" value = "two">Password reset request<br>
  36. <input type="radio" name = "reason" value = "three">Unable to launch course<br>
  37. <input type="radio" name = "reason" value = "four">Course progress is not being saved<br>
  38. <input type="radio" name = "reason" value = "five">Unable to print report or completion certificate<br>
  39. <input type="radio" name = "reason" value = "six">Received e-mail message concerning Learning Expiration Notification<br>
  40. <input type="radio" name = "reason" value = "seven">Other<br>
  41.  
  42.  
  43. <br>
  44. <STRONG>How long did it take to get a response to your e-mail?</STRONG><br>
  45.  
  46.  
  47.  
  48. <input type="radio" name = "response" value = "zero">Under 1 hour<br>
  49. <input type="radio" name = "response" value = "one">2 - 6 hours<br>
  50. <input type="radio" name = "response" value = "two">6 - 12 hours<br>
  51. <input type="radio" name = "response" value = "three">1 business day<br>
  52. <input type="radio" name = "response" value = "four">More than 1 business day<br>
  53. <input type="radio" name = "response" value = "five">They did not reply to my e-mail<br>
  54.  
  55.  
  56.  
  57.  
  58. <br>
  59. <STRONG>Was your problem or issue resolved?</STRONG><br>
  60.  
  61.  
  62.  
  63. <input type="radio" name = "resolved" value = "zero">Yes<br>
  64. <input type="radio" name = "resolved" value = "one">No<br>
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71. <br>
  72. <STRONG>Overall, how would you rate your customer service experience?</STRONG><br>
  73.  
  74.  
  75.  
  76. <input type="radio" name = "rate" value = "zero">Very Satisfied<br>
  77. <input type="radio" name = "rate" value = "one">Satisfied<br>
  78. <input type="radio" name = "rate" value = "two">Neutral<br>
  79. <input type="radio" name = "rate" value = "three">Unsatisfied<br>
  80. <input type="radio" name = "rate" value = "four">Extremely unsatisfied<br>
  81.  
  82. </TABLE>
  83.  
  84.  
  85. </DIV>
  86.  
  87. <br><STRONG>Do you have any comments or suggestions that would help us improve our <var>eLMS</var> customer service? </STRONG>
  88.  
  89. <textarea name="comments" rows="5" cols="50">
  90. </textarea><br><br>
  91.  
  92.  
  93. <input type="submit" value="SUBMIT" name="action">
  94. <input type="reset" value="RESET">
  95. <!--<a href="C:\Documents and Settings\Administrator.ARC00WN82534000\Desktop\FAA eLMS feedback formradio.html">Feedback</a></font></p> -->
  96. </blockquote>
  97. <br>
Reply With Quote Quick reply to this message  
Join Date: Nov 2003
Posts: 781
Reputation: Zachery has a spectacular aura about Zachery has a spectacular aura about 
Solved Threads: 21
Team Colleague
Zachery's Avatar
Zachery Zachery is offline Offline
The Geek Father

Re: radio button no display??

 
0
  #2
Aug 8th, 2005
What language is that in O.o
Firefox: no, its not the end all solution, it has its own issues and in time it will be just as insecure as IE, when its hit Firefox 6, if it makes it that far. Oh, and AOL pays for it, incase you didn't know.

Microsoft & Windows: If you hate it so much, move to linux, or bsd, or anything else, stop complaning and move on.
Good starting places: Gentoo Novell SUSE Fedora Core Apple
Reply With Quote Quick reply to this message  
Join Date: Jun 2005
Posts: 92
Reputation: djbsabkcb is an unknown quantity at this point 
Solved Threads: 0
djbsabkcb's Avatar
djbsabkcb djbsabkcb is offline Offline
Junior Poster in Training

Re: radio button no display??

 
0
  #3
Aug 8th, 2005
The language is ASP and HTML.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC