我的这个语句怎么就不能更新数据库呢
各位大虾,我写了下面的一段代码,是把前面提交的信息写进对应的字段,代码如下:<!--#include file="conn.asp"-->
<%
dim do_man,do_time,sql
do_time=trim(request.form("do_time"))
do_man=trim(request.form("do_man"))
if do_man<>"" and do_time<>"" then
sql="update [nd_msg] set [do_man]='"&do_man&"',[do_time]='"&do_time&"',[agn_type]='1' where [nd_data]='"&session("id")&"' and [nd_name]='"&session("nd_name")&"'"
conn.Execute sql
conn.close
set conn=nothing
response.write "您分配的任务已经提交!"
response.write "<a href='assigned_list_index.asp'>查看分配状态!"
response.end()
else
response.write "<Script language='JavaScript'>window.alert('您输入的任务执行人和时间不能为空,请返回重新输入!');history.back(-1);</Script>"
end if
%>
那就是怎么也不能修改数据库啊,比方说我提交了一下之后,数据库中的这三个字段就是没变啊,怎么回事啊,请各位大虾帮我看看!!!