| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 328 人关注过本帖
标题:怎么才能让这代码正确
只看楼主 加入收藏
quker1983
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-6-13
收藏
 问题点数:0 回复次数:1 
怎么才能让这代码正确

<!--#include file="conn.asp"-->
<%
idt=request("id")
heading=request.form("heading")
shijian=request.form("time1")
text=request.form("text")
%>
<%If heading="" then%>
<script>
alert("标题 不能为空 !");
location.href="newREN.asp";
</script>
<%else%>
<%If shijian="" then%>
<script>
alert("时间 不能为空 !");
location.href="newREN.asp";
</script>
<%else%>
<%
conn.execute("update culture set heading='"& heading &"',time='"&shijian&"',text='"&text&"' where id like '"&idt&"'")
%>
<script>
alert("更新成功!");
location.href="new.asp";
</script>
<%End if%>
<%End if%>


麻烦各位大虾!这是更新的程序.可是执行时conn.execute("update culture set heading='"& heading &"',time='"&shijian&"',text='"&text&"' where id like '"&idt&"'")
错误..可是我不知道问题出在哪里.麻烦帮我纠正下.

搜索更多相关主题的帖子: 代码 
2007-06-13 15:42
lq7350684
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:5089
专家分:98
注 册:2006-11-6
收藏
得分:0 

<!--#include file="conn.asp"-->
<%
idt=request("id")
heading=request.form("heading")
shijian=request.form("time1")
text=request.form("text")

If heading="" then
response.Write"<script>alert('标题 不能为空 !');location.href=newREN.asp;</script>"
end if
If shijian="" then
response.Write "<script>alert('时间 不能为空 !');location.href=newREN.asp;</script>"
end if

conn.execute("update culture set heading='"& heading &"',time='"&shijian&"',text='"&text&"' where id like '"&idt&"'")

response.Write "<script>alert('更新成功!');location.href="new.asp";</script>"
%>

2007-06-13 17:00
快速回复:怎么才能让这代码正确
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029888 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved