ASP更新数据库问题
<%ifweekday(date())=4thensetrs_time=server.CreateObject("adodb.recordset")rs_time.ope...
<%
if weekday(date())=4 then
set rs_time = server.CreateObject("adodb.recordset")
rs_time.open "select * from info", conn ,2,3
rs_time("Start_Date") = rs_time("Start_Date") + 7
rs_time.addnew
rs_time.update
rs_time.close
set rs_time = nothing
end if
%>
页面显示都正常的。但是无法更新数据库。55555555555 展开
if weekday(date())=4 then
set rs_time = server.CreateObject("adodb.recordset")
rs_time.open "select * from info", conn ,2,3
rs_time("Start_Date") = rs_time("Start_Date") + 7
rs_time.addnew
rs_time.update
rs_time.close
set rs_time = nothing
end if
%>
页面显示都正常的。但是无法更新数据库。55555555555 展开
5个回答
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
展开全部
if weekday(date())=4 then
set rs_time = server.CreateObject("adodb.recordset")
rs_time.open "select * from info", conn ,2,3
rs_time.addnew
rs_time("Start_Date") = rs_time("Start_Date") + 7
rs_time.update
rs_time.close
set rs_time = nothing
end if
set rs_time = server.CreateObject("adodb.recordset")
rs_time.open "select * from info", conn ,2,3
rs_time.addnew
rs_time("Start_Date") = rs_time("Start_Date") + 7
rs_time.update
rs_time.close
set rs_time = nothing
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
添加的话 rs_time.open "select * from info ", conn ,1,3
如果是更新要有条件 rs_time.open "select * from info where id="&更新记录的ID&"", conn ,1,3
rs_time.addnew '这是添加记录,没有则是更新记录,请确认是否添加或是更新
你这里面都没东西啊,,你要把要更新的代码放在这里面,才能更新
rs_time.update
如果是更新要有条件 rs_time.open "select * from info where id="&更新记录的ID&"", conn ,1,3
rs_time.addnew '这是添加记录,没有则是更新记录,请确认是否添加或是更新
你这里面都没东西啊,,你要把要更新的代码放在这里面,才能更新
rs_time.update
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
汗。。。
你是更新,还是添加啊。
更新的话,只要rs_time.update就行了啊
你是更新,还是添加啊。
更新的话,只要rs_time.update就行了啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
name都是一样的,在表查询时根据获得的当前id来判断当前记录,就知道更新哪一条了~~
<%
if
Trim(Request.QueryString("w"))="save"
then
set
rs
=server.createobject("adodb.recordset")
rs.open
"select
*
from
表名
where
id="&request("id"),conn,2,3
rs("name")=Request.Form("user_name")
rs("information")=Request.Form("information")
rs.update
%>
<script
language="VBScript"
type="text/VBScript">
msgbox
"该记录修改成功!"
window.location.href="更新完返回到的页面"
</script>
<%
rs.close
end
if
%>
<body>
<form
action="当前页面名称?w=save"
method="post">
<input
name="id"
type="hidden"
value="<%=request("id")%>"
/>
'隐藏域用来获取id
这样应该挺详细了吧~
<%
if
Trim(Request.QueryString("w"))="save"
then
set
rs
=server.createobject("adodb.recordset")
rs.open
"select
*
from
表名
where
id="&request("id"),conn,2,3
rs("name")=Request.Form("user_name")
rs("information")=Request.Form("information")
rs.update
%>
<script
language="VBScript"
type="text/VBScript">
msgbox
"该记录修改成功!"
window.location.href="更新完返回到的页面"
</script>
<%
rs.close
end
if
%>
<body>
<form
action="当前页面名称?w=save"
method="post">
<input
name="id"
type="hidden"
value="<%=request("id")%>"
/>
'隐藏域用来获取id
这样应该挺详细了吧~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询