如何利用数据库内容建立一个下拉式列表?
程序员文章站
2022-05-03 15:59:40
如何利用数据库内容建立一个下拉式列表?<% mydsn="dsn=xur;uid=xur;pwd=xur"...
如何利用数据库内容建立一个下拉式列表?
<% mydsn="dsn=xur;uid=xur;pwd=xur"
mysql="select * from authors where au_id<100"
set conntemp=server.createobject("adodb.connection")
conntemp.open mydsn
set rstemp=conntemp.execute(mysql)
if rstemp.eof then
response.write "噢,数据库为空!"
response.write mysql
conntemp.close
set conntemp=nothing
response.end
end if%>
<%do until rstemp.eof %>
<%
rstemp.movenext
loop
rstemp.close
set rstemp=nothing
conntemp.close
set conntemp=nothing
' 清空对象
%>
上一篇: 如何制作一个弹出式的调查窗口?
下一篇: IDEA中GitLab的使用详解