This works but only displays current record
<INPUT TYPE="text" NAME="Test" value="<%=rs( "Test" ) %>">
But I want to display the original info from database and use
The first field will be database info this below doesnt work any ideas
After they select one they click update and it updates database with their selection
<select name="Test">
<option value="<%=rs( "Test" ) %>"></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<INPUT TYPE="text" NAME="Test" value="<%=rs( "Test" ) %>">
But I want to display the original info from database and use
The first field will be database info this below doesnt work any ideas
After they select one they click update and it updates database with their selection
<select name="Test">
<option value="<%=rs( "Test" ) %>"></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>