Hello,
I have a form validation page that when a user clicks the button, if not all fields are selected, is redirected back to the page. I want the values they selected from the drop-down menus to still be there when they get back, so their choice is stored in a variable called "check3."
The select box's code is as follows:
<select name="ownership" SelectedIndex="<%check3%>">
<option value="">Select</option>
<option value="1">For Profit</option>
<option value="2">Not for Profit</option>
<option value="3">Government Owned</option>
</select>
I made sure "check3" has the correct value in it, but this is not working. Can anyone tell me what I should do?
I have a form validation page that when a user clicks the button, if not all fields are selected, is redirected back to the page. I want the values they selected from the drop-down menus to still be there when they get back, so their choice is stored in a variable called "check3."
The select box's code is as follows:
<select name="ownership" SelectedIndex="<%check3%>">
<option value="">Select</option>
<option value="1">For Profit</option>
<option value="2">Not for Profit</option>
<option value="3">Government Owned</option>
</select>
I made sure "check3" has the correct value in it, but this is not working. Can anyone tell me what I should do?