codice:
<%
valore = rs("campoDB") ' ad esempio contiene 2
%>
<select name="nome">
<option value="">seleziona</option>
<option value="1"<% if valore = 1 then %> selected="selected"<% end if %>>1</option>
<option value="2"<% if valore = 2 then %> selected="selected"<% end if %>>2</option>
<option value="3"<% if valore = 3 then %> selected="selected"<% end if %>>3</option>
</select>