[求助]关于用ASP直接存取ACCESS数据
首先申明 我是 菜鸟~!
我按照十天学会ASP之第四天里面的例子做,就是提取不了access的数据
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("guestbook")
exec="select * from guestbook"
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<html>
<BODY>
<table width="100%" border="0" cellspacing="0" cellpadding="0" >
<%do while not rs.eof%><tr>
<td><%=response.write("name")%></td>
<td><%=response.write("tel")%></td>
<td><%=response.write("message")%></td>
<td><%=response.write("time")%></td>
</tr><%
rs.movenext
loop
%>
</table>
</html>
不知道是不是这样写的,guestbook我也用ACCESS做出来了
用127.0.0.1打开不是空页就是找不到网页
哪个大哥能教教我啊! 我用的是XP系统是不是这个原因不行?还是上边编写有问题?