I have form elements that determine the action of the form like below. This works great EXCEPT when they click the back button in their browser and it forgets the action. What is the best way to fix this?
<label>
<input type="radio" name="proptype" id="RESI" value="RESI" checked="checked" onClick="this.form.action='?frame=TEST&base=fc';" />
Residential</label>
<label>
<input type="radio" name="proptype" id="LOTL" value="LOTL" onClick="this.form.action='?frame=TEST1&base=fc';" />
Land and Lots</label>
Check the value of the (successful) radio button server side instead of changing the action dynamically.