见二楼~
[此贴子已经被作者于2006-5-17 10:40:55编辑过]
初学ASP,我想实现查询ACCESS数据库然后在网页上显示结果的效果
请教一下这段代码哪里有问题?谢谢
[此贴子已经被作者于2006-5-17 10:39:44编辑过]
<% @LANGUAGE="VBSCRIPT"%> '此行必须在顶部第一行
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 1</title>
</head>
<body>
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("dbfile\1.mdb") '用相对路径,且网页文件与dbfile文件夹在同目录下
%>
<%
exec="select * from 表1"
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="16">
<%do while not rs.eof%><tr>
<td height="16"><%=rs("QY")%></td>
<td height="16"><%=rs("MD")%></td>
<td height="16"><%=rs("YJ")%></td>
</tr><%
rs.movenext
loop
rs.close()
set rs=noting '养成关闭连接的习惯
%>
</table>
</body>
</html>
'注意文件保存格式.asp的
[此贴子已经被作者于2006-5-17 11:34:43编辑过]