Hi
My Uni assignment is to develop a flight Reservation using ASP and Ms Access database. I have started it and got stack with how to code a select from displayed flights using Radio button. I would much appreciate and suggestions:
<table border="1">
<thead><h2><%=(rsOutBound.Fields.Item("deptCity").Value)%> To <%=(rsOutBound.Fields.Item("arrCity").Value)%></h2></thead>
<tr>
<% While ((Repeat1__numRows <> 0) AND (NOT rsOutBound.EOF)) %>
<td><b><%= FormatCurrency((rsOutBound.Fields.Item("price").Value), 2, -2, -2, -2) %></b>
<%=(rsOutBound.Fields.Item("deptDate").Value)%><br/>
<%=(rsOutBound.Fields.Item("deptTime").Value)%><br/>
<%=(rsOutBound.Fields.Item("arrTime").Value)%><[B]input name="outBound" type="radio" value="" />[/B]</td>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
rsOutBound.MoveNext()
Wend
%></tr>
</table>
<br/><br/>
</body>
</html>
<%
rsOutBound.Close()
Set rsOutBound = Nothing
%>