ASP 怎么取数据库表中栏位做成下拉列表/菜单,这个栏位?
发布网友
发布时间:2023-10-07 02:05
我来回答
共4个回答
热心网友
时间:2024-11-09 03:37
我再来改一下
<select name="select">
<option selected>==请选择==</option>
<%if rs.eof and rs.bof then%>
<option selected>没有记录</option>
<%
else
do while not rs.eof%>
<option value="<%=rs("aa")%>"><%=rs("aa")%></option>
<%
rs.movenext
loop
end if
rs.close
%>
</select>
热心网友
时间:2024-11-09 03:38
<select name="select">
<%do while not rs.eof%>
<option value="<%=rs("aa")%>"><%=rs("aa")%></option>
<%
rs.movenext
loop
%>
</select>
改一下楼上的,呵呵
热心网友
时间:2024-11-09 03:38
<%do while not rs.eof%>
<select name="select">
<option value="<%=rs("aa")%>"><%=rs("aa")%></option>
</select>
<%
rs.movenext
loop
%>
热心网友
时间:2024-11-09 03:39
select 下拉列表框