I'm using the below code to view items selected from a multiple list on one page. I cannot write the information to screen or to the textbox. Please advise.
<% LANGUAGE="VBSCRIPT" %>
<form name="Suggestion" method="Post" action="confirm.asp">
<table>
<tr><td>Suggestors: </td>
<td><input type="text" name="FirstName" size="50"></td></tr>
<tr><td>Last Name: </td>
<td><input type="text" name="LastName" size="50"></td></tr>
<tr><td>Comments: </td>
<td><textarea cols="50" name="Comments" ></textarea></td></tr>
</table>
<input type="submit" name="Submit" value="Submit">
<%
Suggestor = Request.form("Suggestor"
%>
<% LANGUAGE="VBSCRIPT" %>
<form name="Suggestion" method="Post" action="confirm.asp">
<table>
<tr><td>Suggestors: </td>
<td><input type="text" name="FirstName" size="50"></td></tr>
<tr><td>Last Name: </td>
<td><input type="text" name="LastName" size="50"></td></tr>
<tr><td>Comments: </td>
<td><textarea cols="50" name="Comments" ></textarea></td></tr>
</table>
<input type="submit" name="Submit" value="Submit">
<%
Suggestor = Request.form("Suggestor"
%>