<% dim report_type %>
<table>
<tr><form>
<td>
<INPUT TYPE="radio" name="report" value="timecard" checked>Time Card<br>
<INPUT TYPE="radio" name="report" value="summary">Time Summary</td>
</form></tr>
<tr><td><a href="<%= report_type %>.asp">Time Report</a></td>
</tr>
</table>
I need to change the reporttype variable based on the value of the radio button selected. How can I accomplish this???
<table>
<tr><form>
<td>
<INPUT TYPE="radio" name="report" value="timecard" checked>Time Card<br>
<INPUT TYPE="radio" name="report" value="summary">Time Summary</td>
</form></tr>
<tr><td><a href="<%= report_type %>.asp">Time Report</a></td>
</tr>
</table>
I need to change the reporttype variable based on the value of the radio button selected. How can I accomplish this???