代码错在哪里。
<%
title=request("title")
name=request("name")
tel=request("tel")
home=request("home")
mail=request("mail")
word=request("word")
set rs=server.createobject("Adodb.recordset")
set conn=server.createobject("adodb.conncetion")
dbq=Server.MapPath("data/data.mdb")
constr="driver={microsoft access driver(*.mdb)};dbq="&dbq
conn.open constr
sql="select * from mybook"
rs.open sql 1,1
rs.addnew
rs("title")=title
rs("name")=name
rs("tel")=tel
rs("home")=home
rs("mail")=mail
rs("word")=word
rs.update
rs.close
set rs=nothing
%>
错误信息: