Hi - how could i stop a form from reseting all its values when its action is to the same page?
..that submits fine, but if the user had selected 'valueTwo', it would be back a 'valueOne'. I need all the values to stay as they were when submited.
Cheers
Code:
<form action=blah.asp>
<select name=x>
<option value="valueOne">valueOne
<option value="valueTwo">valueTwo
</select>
<input type=submit>
</form>
..that submits fine, but if the user had selected 'valueTwo', it would be back a 'valueOne'. I need all the values to stay as they were when submited.
Cheers