Hi,
What do i need to do in order to have an ASP page, where a form is selected and when the user presses "submit" the page will reload with the url containing the variables that they just chose?
e.g here is the code for the form, now i just want to be able to reload the page containg the form and in the url have the variable that I just choose.
How is it done though?
Cheers
James
What do i need to do in order to have an ASP page, where a form is selected and when the user presses "submit" the page will reload with the url containing the variables that they just chose?
e.g here is the code for the form, now i just want to be able to reload the page containg the form and in the url have the variable that I just choose.
Code:
<FORM ACTION="???" METHOD=GET>
<Option NAME="HolidayLocation">
<table width="60%" border="1">
<tr>
<td><OPTION>Madrid</OPTION></td>
<td><OPTION>Rome</OPTION></td>
<td><OPTION>Paris</OPTION></td>
<td><OPTION>Berlin</OPTION></td>
<td><OPTION>Moscow</OPTION></td>
<td><OPTION>Birmingham</OPTION></td>
</tr>
</table>
</SELECT>
<INPUT TYPE="SUBMIT">
How is it done though?
Cheers
James