怎么显示ASP数据库内容
我在试着做一个业务员业务查询程序,index.asp首页登录框,验证会员登录,已做好conn.asp数据库连接,已做好show.asp验证登录后显示到这个页面,然后显示数...
我在试着做一个业务员业务查询程序,
index.asp 首页登录框,验证会员登录,已做好
conn.asp 数据库连接,已做好
show.asp 验证登录后显示到这个页面,然后显示数据表yz里的内容。(没做)
数据库名:data.mdb 内有两个表:id 和 yz 。
表:id 内有字段:name , pwd (用来存放用户名密码)
表:yz 内有字段:data,name,ym,xnzj,email,sjk,ftp,yzh
(业务资料)
我需要show.asp页面实现下面效果:
日 期 姓 名 域 名 虚拟主机 企业邮箱 数据库 FTP租用 业绩额
2008-12-1 某某 1 1 1 1 1 2541
2008-12-2 某某 1 2 1 1 2 2121
下面是我show.asp写好的代码:
<html>
<head>
<title>个人业绩显示</title>
</head>
<body bgcolor="#ccffcc">
<%
response.write "<table align=center width=90% border=1 >" '输出表格,边框为1
response.write "<tr align=center><td width=120>日 期</td><td width=120>姓 名</td><td width=100>域 名</td><td width=100>虚拟主机</td><td width=120>企业邮箱</td><td width=100>数据库</td><td width=100>FTP租用</td><td width=140>业绩额</td></tr>"
response.write "</table>"
%>
</body>
</html>
请问我应该如何调用数据才能正确显示呢。谢谢。 展开
index.asp 首页登录框,验证会员登录,已做好
conn.asp 数据库连接,已做好
show.asp 验证登录后显示到这个页面,然后显示数据表yz里的内容。(没做)
数据库名:data.mdb 内有两个表:id 和 yz 。
表:id 内有字段:name , pwd (用来存放用户名密码)
表:yz 内有字段:data,name,ym,xnzj,email,sjk,ftp,yzh
(业务资料)
我需要show.asp页面实现下面效果:
日 期 姓 名 域 名 虚拟主机 企业邮箱 数据库 FTP租用 业绩额
2008-12-1 某某 1 1 1 1 1 2541
2008-12-2 某某 1 2 1 1 2 2121
下面是我show.asp写好的代码:
<html>
<head>
<title>个人业绩显示</title>
</head>
<body bgcolor="#ccffcc">
<%
response.write "<table align=center width=90% border=1 >" '输出表格,边框为1
response.write "<tr align=center><td width=120>日 期</td><td width=120>姓 名</td><td width=100>域 名</td><td width=100>虚拟主机</td><td width=120>企业邮箱</td><td width=100>数据库</td><td width=100>FTP租用</td><td width=140>业绩额</td></tr>"
response.write "</table>"
%>
</body>
</html>
请问我应该如何调用数据才能正确显示呢。谢谢。 展开
展开全部
如果你的conn.asp已经做好数据库引擎了那么代码如下
<%
set rs=server.createobject("adodb.recordset")
sql="select * from id join yz"
rs.open sql,conn,1,1
response.write "<table align=center width=90% border=1 >" '输出表格,边框为1
response.write "<tr align=center><td width=120>日 期</td><td width=120>姓 名</td><td width=100>域 名</td><td width=100>虚拟主机</td><td width=120>企业邮箱</td><td width=100>数据库</td><td width=100>FTP租用</td><td width=140>业绩额</td></tr>"
while not rs.eof
response.write "<tr><td>"&<=rs("date")%%>&"</td><td>"&<=rs("name")%>&"</td><td>"&<=rs("ym")%>&"</td><td>"&<=rs("xnzj")%>&"</td><td>"&<=rs("email")%>&"</td><td>"&<=rs("sjk")%>&"</td><td>"&<=rs("ftp")%>&"</td><td>"&<=rs("yzh")%>&"</td></tr>"
rs.movenext
wend
response.write "</table>"
rs.close
%>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from id join yz"
rs.open sql,conn,1,1
response.write "<table align=center width=90% border=1 >" '输出表格,边框为1
response.write "<tr align=center><td width=120>日 期</td><td width=120>姓 名</td><td width=100>域 名</td><td width=100>虚拟主机</td><td width=120>企业邮箱</td><td width=100>数据库</td><td width=100>FTP租用</td><td width=140>业绩额</td></tr>"
while not rs.eof
response.write "<tr><td>"&<=rs("date")%%>&"</td><td>"&<=rs("name")%>&"</td><td>"&<=rs("ym")%>&"</td><td>"&<=rs("xnzj")%>&"</td><td>"&<=rs("email")%>&"</td><td>"&<=rs("sjk")%>&"</td><td>"&<=rs("ftp")%>&"</td><td>"&<=rs("yzh")%>&"</td></tr>"
rs.movenext
wend
response.write "</table>"
rs.close
%>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |