<select name="select">
如何在这个之间显示所有记录?
</select>
<select name="where" id="where" onclick=addwhere()>
<option value="<%=rst.Fields(0)%>" selected><%=rst.Fields(0)%></option>
<%rst.MoveNext%>
<%do while not rst.EOF%>
<option value="<%=rst.Fields(0)%>"><%=rst.Fields(0)%></option>
<%rst.MoveNext%>
<%loop%>
</select>
<select name="where" id="where">
<%do while not rs.EOF%>
<option value="<%=rs("字段名")%>" selected><%=rs("字段名")%></option>
<%rs.MoveNext%>
<%loop%>
</select>