asp查询access的问题,高手请指点!!!
我有一个产品列表,我想显示这个表里所有的字段,在ASP中该使用什么语句来查询,比如说我这个表里有10商品,我想把它全部显示出来,请高手指点,最好能附上源码,如果能加上条件...
我有一个产品列表,我想显示这个表里所有的字段,在ASP中该使用什么语句来查询,比如说我这个表里有10商品,我想把它全部显示出来,请高手指点,最好能附上源码,如果能加上条件显示和分页功能那最好了
在线等!!
QQ:583883023 展开
在线等!!
QQ:583883023 展开
展开全部
<%
set rs=conn.execute("select top 8 id,产品名称,授权标志,所属类别 from 产品表名 where 产品名称 like '%笔%' and 授权标志=1 order by id desc")
%>
<table width="100%">
<%
do while not rs.eof
%>
<tr><td <%if icolor=0 then response.write"bgColor=#f0f0f0" else response.write"bgColor=#ffffff" end if%>>· <a title='<%=rs("产品名称")%>' href='详细页面.asp?ID=<%=rs("ID")%>' target='_blank'><%=left(rs("产品名称"),8)%></a></td></tr>
<%
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
rsnews.movenext
loop
%></table>
解释:
<%if icolor=0 then response.write"bgColor=#f0f0f0" else response.write"bgColor=#ffffff" end if%>
第1行bgColor=#f0f0f0
第2行bgColor=#ffffff
后面的就是控制语句
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
set rs=conn.execute("select top 8 id,产品名称,授权标志,所属类别 from 产品表名 where 产品名称 like '%笔%' and 授权标志=1 order by id desc")
%>
<table width="100%">
<%
do while not rs.eof
%>
<tr><td <%if icolor=0 then response.write"bgColor=#f0f0f0" else response.write"bgColor=#ffffff" end if%>>· <a title='<%=rs("产品名称")%>' href='详细页面.asp?ID=<%=rs("ID")%>' target='_blank'><%=left(rs("产品名称"),8)%></a></td></tr>
<%
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
rsnews.movenext
loop
%></table>
解释:
<%if icolor=0 then response.write"bgColor=#f0f0f0" else response.write"bgColor=#ffffff" end if%>
第1行bgColor=#f0f0f0
第2行bgColor=#ffffff
后面的就是控制语句
icolor=icolor+1
if icolor>1 then icolor=0
rowcount=rowcount-1
展开全部
db=mappath("数据库名")
connstr="Provider=Microsoft.OLEDB.Jet.4.0;Data Source="&db
set conn=server.creatobject("adodb.connection")
conn.open connstr
sql = "select * from 表名"
set rs = server.creatobject("adodb.recordset")
rs.open conn,sql,1,1
for i=0 to rs.count
response.write rs(i).name '显示字段名
next
rs.close
set rs=nothing
sql="select * from 表名
set rs=server.creatobject("adodb.recordset")
rs.open conn,sql,1,1
do while no rs.eof
response.write rs("相显示内容的字段名")&"<br>"
rs.movenext
loop
rs.close
set rs=nothing
conn.close
set conn=nothing
connstr="Provider=Microsoft.OLEDB.Jet.4.0;Data Source="&db
set conn=server.creatobject("adodb.connection")
conn.open connstr
sql = "select * from 表名"
set rs = server.creatobject("adodb.recordset")
rs.open conn,sql,1,1
for i=0 to rs.count
response.write rs(i).name '显示字段名
next
rs.close
set rs=nothing
sql="select * from 表名
set rs=server.creatobject("adodb.recordset")
rs.open conn,sql,1,1
do while no rs.eof
response.write rs("相显示内容的字段名")&"<br>"
rs.movenext
loop
rs.close
set rs=nothing
conn.close
set conn=nothing
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询