[求助]asp连接access数据库问题
请教高手帮我看下,哪里出现了错误,以下分别是两个页面的源程序,谢谢.<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>aaa</title>
</head>
<body>
<%Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq="&Server.MapPath("luo01.mdb")
sql = "select * from luo01"
Set rs = Server.CreateObject("ADODB.RecordSet")
rs.Open sql,conn,1,1
Do While Not rs.Eof
Response.Write "<p>姓名:"& rs("名字") &" 地址:"& rs("地址") </p>"
rs.MoveNext
Loop
rs.Close
Set rs = Nothing
conn.Close
Set conn = Nothing %>
</body>
</html>
<html>
<head>
<title>bbb</title>
</head>
<body>
<form method ="post" action ="luo01.asp">
<p>姓名:<input type ="text" name ="name" size ="20">
<P><input type="submit" value="查询" name="B1">
<input type="reset" value="复原" name="B2"></p>
</form>
</body>
</html>