<select size="1" name="name">
<option value="默认值" selected>默认值</option>
<%
'在这之前打开数据库,查询表
for i=1 to rs.recordcount
if rs.eof then exit for
%>
<option value="<%=rs("name")%>"><%=rs("name")%></option>
<%
nextmove
rs.close
set rs=nothing
%>
</select>
[此贴子已经被作者于2005-3-25 9:06:38编辑过]