I have an asp page that selects names out of a column in a database to place them in a drop down box. Problem is that the information is placed by quaters. so the name is in the column multiple times. How do I write the statement to only select the name once and not mulitple times.
Here is the code I have so far:
<select name="selection">
<% do while not ors.eof %>
<option><% =ors.fields ("selection".value %>
</option></font>
<% ors.movenext
loop
'dbobj.close
'set dbobj=nothing%></select>
Here is the code I have so far:
<select name="selection">
<% do while not ors.eof %>
<option><% =ors.fields ("selection".value %>
</option></font>
<% ors.movenext
loop
'dbobj.close
'set dbobj=nothing%></select>