asp 更新数据库

求救~~~帮忙看一下这段码,点击每条记录后面的“修改”然后跳到另一个页面,根据传过来的id在每个文本框里显示出数据表里相应的数据,对文本框里的数据进行修改后,然后点“修改... 求救~~~帮忙看一下这段码,点击每条记录后面的“修改”然后跳到另一个页面,根据传过来的id 在每个文本框里显示出数据表里相应的数据,对文本框里的数据进行修改后,然后点“修改”按钮,从而更新了数据库。现在显示是没有问题了,但就是没办法更新数据库。老是出错~~
<%
Set rs = Server.CreateObject("ADODB.RecordSet")
sql="select * from chengjiao where id="&request("id")
rs.open sql,conn,1,3
if rs.eof then
Response.Write("参数有错")
response.end
end if
%>
<%
id=request.QueryString("id")
if request.Form("dd")<>"" then
set rs=server.CreateObject("ADODB.Recordset")
up="update chengjiao set place='"&dd&"',construct='"&sgf&"',client='"&kh&"',housetype='"&lx&"',area='"&mj&"' where id="&"id"
conn.execute(up)
%>
<script language="javascript">
alert("该信息已更新成功!")
window.location.href='chengjiaoxg.asp';
</script>
<% end if %>
<form name="form1" method="post" action="">
<table width="50%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#F6F6F6">
<tr>
<td width="20%" class="title1">地点</td>
<td><input name="dd" type="text" class="STYLE1" id="dd" tabindex="2" value='<%=rs("place")%>'/></td>
</tr>
<tr>
<td class="title1">施工方</td>
<td><input name="sgf" type="text" class="STYLE1" id="sgf" tabindex="3" value='<%=rs("construct")%>'/></td>
</tr>
<tr>
<td class="title1">客户方</td>
<td><input name="kh" type="text" class="STYLE1" id="kh" tabindex="4" value='<%=rs("client")%>'/></td>
</tr>
<tr>
<td class="title1">房屋类型</td>
<td><input name="lx" type="text" class="STYLE1" id="lx" tabindex="5" value='<%=rs("housetype")%>'/>
<span class="title1">格式如:三室一厅</span></td>
</tr>
<tr>
<td class="title1">面积</td>
<td><input name="mj" type="text" class="STYLE1" id="mj" tabindex="6" size="4" value='<%=rs("area")%>'/>
<span class="title1">单位(平方米)</span></td>
</tr>
<tr>
<td class="title1">上传图片</td>
<td><img src="<%=rs("picture")%>" vspace="8" height="100"/>
<iframe src="upload.asp?id=<%=rs("id")%>" height="40" frameborder="0" scrolling="no"></iframe></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="修改" /></td>
</tr>
</table>
</form>
展开
 我来答
yu_呼吸
2006-12-04 · 超过20用户采纳过TA的回答
知道答主
回答量:64
采纳率:0%
帮助的人:0
展开全部
这个代码会不会一打开页面就出错?
改为:
<%
Set rs = Server.CreateObject("ADODB.RecordSet")
sql="select * from chengjiao where id="&request("id")
rs.open sql,conn,1,3
if rs.eof then
Response.Write("参数有错")
response.end
end if

if request("action")="yes" then
call formsubmit
else
call showform
end if

sub formsubmit()
更新
end sub

sub showform()
%>
表单 加一隐藏域
<input name="action" type="hidden" value="yes">
<% end sub %>
今至电子科技有限公司
2024-08-23 广告
上海今至电子科技有限公司,是一家从事运维服务、系统集成和网络工程的专业公司。业务涵盖IT解决方案、网络工程、应用软件开发、系统集成、服务器虚拟化、桌面虚拟化、高性能运算、负载均衡、数据容灾备份、服务外包、IT运维等。我们的理念:诚信为本,服... 点击进入详情页
本回答由今至电子科技有限公司提供
廉萧督半香
2009-11-05 · TA获得超过1171个赞
知道小有建树答主
回答量:1538
采纳率:100%
帮助的人:7.1万
展开全部
conn.execute("update
表名
set
字段名
=值
where
条件")
如:
conn.execute("update
student
set
studentNo="&request.form("studentNo")&"
where
id="&request.form("ID"))
以上执行后会更新表
student
中字段
studentNo
的值为request.form("studentNo"),条件是字段ID的值等于FORM表传递的request.form("ID")
估计你不需要,所以省略了数据库的连接==。
注意你设计的数据表中字段的数据类型,我这个例子中的字段studentNo、id的数据类型都为整型
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
韦邈眭问寒
2009-11-01 · TA获得超过1166个赞
知道小有建树答主
回答量:1535
采纳率:100%
帮助的人:7.1万
展开全部
<%
'字符串连接数据库-------------------------------------------------------------------------------
set
conn=server.createobject("adodb.connection")

conn.open
"driver=driver
do
microsoft
access
(*.mdb);uid=admin;pwd=;dbq="&server.mappath("mdb/wpjy.mdb")
set
rst=server.createobject("adodb.recordset")
sql="select
top
1
*
from
wpjy
where
wpjy_id=558"
rst.open
sql,conn,1,3
if
not
rst.eof
then '判断是否存在wpjy_id=558的数据记录.这个地方楼上弄反了
rst("wpjy_rq")=rst("wpjy_rq")+1 '在原来的数据上面加1
rst.update '更新数据
end
if
%>
<%=rst("wpjy_rq")%>
<%
rst.close
set
rst=nothing
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式