看不出哪里错了,照搬过来就不行。请专家诊断。
错误类型:Microsoft JET Database Engine (0x80004005)
操作必须使用一个可更新的查询。
/tay5/hw2.asp, 第 17 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
bname=request.form("name")
tel=request.form("tel")
message=request.form("message")
<%
set conn=server.createobject("adodb.connection")
mypath=server.mappath("../e5/example3.mdb")
conn.open "provider=microsoft.jet.oledb.4.0;data source=" & mypath
conn.execute("insert into guestbook(name,tel,message) values('"&bname&"','"&tel&"','"&message&"')")
conn.close
set conn=nothing
response.write "记录添加成功!"
%>
</body>
实在没办法,就把别人的成功代码照搬过来,到了我这里就不行了。不知哪里出了问题,请专家诊断一下。谢谢