Forum Moderators: open
It works without a problem in firefox and opera but in IE6 it just refreshes the page. If I hit refresh in IE it says "...this page cannot be refreshed without resending data..." Any idead?
<form action="http://example.com/page" method="get" enctype="text/plain">
<table>
<tr>
<td>A<br />
<select name="a">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5" selected="selected">5</option></select>
</td>
<td>B<br />
<select name="b">
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
</td>
<td>
<input type="submit" value="Next"></input>
</td>
</tr>
</table>
</form>
There also might be some peculiarity in the way you've set up the attributes in the select boxes. It's hard to say from the abbreviated code, but that's the other hot spot.
Basically it's:
1) catch the data with the form
2) pitch it to the server
3) do what you need to do with the data
4) throw it back to wherever it goes (database, new page, mailserver, whatever)