ASP中如何取出SQL数据库中的一列值(姓名),然后在网页中显示?
2个回答
展开全部
<%conn=......
set conn=......连接数据库省略
sql="select distinct 姓名 from 表名" 这里加distinct是将重复的姓名去掉,可去掉,默认全部姓名
set rs=conn.execute(sql)
if not rs.eof then
do while not rs.eof%>
<td><%=rs("姓名")%></td> 在表格中显示
<%rs.movenext
loop
end if%>
set conn=......连接数据库省略
sql="select distinct 姓名 from 表名" 这里加distinct是将重复的姓名去掉,可去掉,默认全部姓名
set rs=conn.execute(sql)
if not rs.eof then
do while not rs.eof%>
<td><%=rs("姓名")%></td> 在表格中显示
<%rs.movenext
loop
end if%>
更多追问追答
追问
可不可以带点符号啊,我是新手好多错改不了
追答
这个asp语言不需要标点符号的。。。和JAVASCRIPT不一样的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询