<form>
<input name="timeoption" type="radio" value="option_bookings_only">
<% if request.form("timeoption") = "option_bookings_only" then %>
<td><div align="right">
<input type="submit" title='Click here to search the whole table by requested criteria' onMouseOver='style.cursor="hand"' value="Submit" width="100" height="25" onClick="option_bookings.asp">
</div></td>
<% else %>
<td><div align="right">
<input type="submit" title='Click here to search the whole table by requested criteria' onMouseOver='style.cursor="hand"' value="Submit" width="100" height="25">
</div></td>
<% end if %>
</form>
If the radio button is selected i want the submit button to go to option_bookings.asp else just submit.
hwo is this done?
www.crmpicco.co.uk