如何利用数据库内容建立一个下拉式列表?

来源:asp之家 时间:2010-01-01 15:46:00 

代码如下:

<% 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
' 清空对象
%>

标签:下拉列表,数据库,asp
0
投稿

猜你喜欢

  • Java与Mysql锁相关知识总结

    2024-01-17 14:24:19
  • asp不用DSN也能连接EXCEL吗?

    2009-10-29 12:25:00
  • 对python numpy数组中冒号的使用方法详解

    2022-05-15 11:26:41
  • ASP中使用SQL语句教程

    2008-09-03 12:17:00
  • javascript 获取链接文件地址中第一个斜线内的正则表达式

    2024-02-25 07:53:28
  • python爱心表白 每天都是浪漫七夕!

    2023-02-26 20:36:55
  • 如何使用python统计字符在文件中出现的次数

    2021-07-13 20:11:47
  • JavaScript的私有成员

    2009-03-25 20:45:00
  • python项目打包成exe和安装包的方法步骤

    2023-06-29 08:37:21
  • Centos7下源码安装Python3 及shell 脚本自动安装Python3的教程

    2023-01-11 13:45:04
  • CSS布局之浮动(三)自适应

    2008-08-19 12:49:00
  • 在GitHub Pages上使用Pelican搭建博客的教程

    2021-08-02 18:47:48
  • pdo中使用参数化查询sql

    2023-07-20 21:11:21
  • perl 采集入库脚本分享

    2023-09-13 08:45:40
  • linux采用binary方式安装mysql

    2024-01-27 19:40:18
  • bootstrap3 兼容IE8浏览器!

    2023-07-02 05:18:58
  • javascript使用location.search的示例

    2023-07-16 09:14:40
  • python从入门到实践之组合数据类型

    2021-09-02 17:53:54
  • python typing模块--类型提示支持

    2023-11-11 16:47:27
  • python中 * 的用法详解

    2023-06-22 20:05:43
  • asp之家 网络编程 m.aspxhome.com