求求各位大虾看看!!!
下面这段语句我不知道是哪出了问题,说什么数据类型不匹配?????<!--#include file="conn.asp"-->
<html>
<body><%
dim do_man,do_time,sql
do_time=trim(request.form("do_time"))
do_man=trim(request.form("do_man"))
if do_man<>"" then
sql="update [nd_msg] set [do_man]='"&do_man&"',[do_time]='"&do_time&"',[agn_type]='1' where [id]='"&session("id")&"' and [nd_name]='"&session("nd_name")&"'"
conn.Execute sql
conn.close
set conn=nothing
else
response.write "<Script language='JavaScript'>window.alert('您输入的任务执行人不能为空,请返回重新输入!');history.back(-1);</Script>"
end if
%>
</body>
</html>
报错地方是SQL,还有下面的那个conn.execute sql
请各位大虾赐教!!!!!