注册的问题.........
Microsoft JET Database Engine (0x80040E09)不能更新。数据库或对象为只读。
/wangye/house/regcl.asp, 第 14 行
这是给我的提示
我的代码,以前我这么写是可以注册的,现在怎么注册不了了
<!--#include file="../conn.asp"-->
<%
uid=request.Form("uid")
upwd=request.Form("upwd")
add=request.Form("add")
sex=request.Form("sex")
tel=request.Form("tel")
email=request.Form("email")
names=request.Form("name")
set urs=server.CreateObject("adodb.recordset")
urs.open"select * from userzl where uid='"&uid&"'",conn,1,3
if not urs.eof then
response.Write"<script language=javascript>alert('用户名已存在');history.go(-1);</script>"
else urs.addnew
urs("uid")=uid
urs("upwd")=upwd
urs("email")=email
urs("sex")=sex
urs("name")=names
urs("add")=add
urs("tel")=tel
urs.update
urs.close
set urs=nothing
session("uid")=uid
session("upwd")=upwd
response.Write"<script language=javascript>alert('注册成功');window.location='../house/house.asp'</script>"
end if
%>