asp添加记录无反映

我的ASP写的为什么添加记录后数据库是空的,而且我在ASP文件里判断不能为空的语句也没起作用,在没写上任何东西点提交他也不提示出错,我是初学者,老师们帮帮我,我是提交本页... 我的ASP写的为什么添加记录后数据库是空的,而且我在ASP文件里判断不能为空的语句也没起作用,在没写上任何东西点提交他也不提示出错,我是初学者,老师们帮帮我, 我是提交本页处理的,代码如下:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="data/conn.asp"-->
<%
if Request.form("act")="tj" then
set rs=server.createobject("adodb.recordset")
sql="select * from movie"
rs.open sql,conn,1,3
if name="" or shueifei="" then
Response.Write("<script language=javascript>alert('租客名称和水费不能为空!!');window.location.href='index.asp';</script>")
else
rs.addnew
rs("n_name")=request.form("name")
rs("n_shueifei")=request.form("shueifei")
rs("n_dianfei")=request.form("dianfei")
rs("n_fangzu")=request.form("fangzu")
rs("n_data")=request.form("data")
rs.update
rs.close
set rs=nothing
Response.Write("<script language=javascript>alert('添加成功!');window.location.href='index.asp';</script>")
end if
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>ASP学习题</title>
</head>

<body>

<form action="tj.asp?act=tj" method="post" name="form1" id="form1">
<table width="100%" border="0">
<tr>
<td width="13%">租客名称:</td>
<td width="87%"><label>
<input type="text" name="name" id="name" />
</label></td>
</tr>
<tr>
<td>水费:</td>
<td><label>
<input type="text" name="shueifei" id="shueifei" />
</label></td>
</tr>
<tr>
<td>电费:</td>
<td><label>
<input type="text" name="dianfei" id="dianfei" />
</label></td>
</tr>
<tr>
<td>房租费:</td>
<td><label>
<input type="text" name="fangzu" id="fangzu" />
</label></td>
</tr>
<tr>
<td>日期时间:</td>
<td><label>
<input type="text" name="data" id="data" />
<input type="submit" name="button" id="button" value="提交" />
</label></td>
</tr>
</table>

</form>
</body>
</html>
<%
conn.close
set conn=nothing
%>
展开
 我来答
志者jG
2010-01-29 · TA获得超过281个赞
知道答主
回答量:98
采纳率:0%
帮助的人:70.7万
展开全部
rs.open sql,conn,1,3
if name="" or shueifei="" then

首先,为空不显示是因为,name\shueifei 这是变量,没有值的。你要request

第二,没有插入数据可能因为:rs.open sql,conn,1,3
你修改成:rs.open sql,conn,3,3
试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
kxl361
2010-01-29 · TA获得超过393个赞
知道小有建树答主
回答量:686
采纳率:0%
帮助的人:865万
展开全部
首先,你看看data/conn.asp 里面有没有错误
再试一试如下代码:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="data/conn.asp"-->
<%
if Request("act")="tj" then
set rs=server.createobject("adodb.recordset")
sql="select * from movie"
rs.open sql,conn,1,3
if request.form("name")="" or request.form("shueifei")="" then
Response.Write("<script language=javascript>alert('租客名称和水费不能为空!!');window.location.href='index.asp';</script>")
response.end();
else
rs.addnew
rs("n_name")=request.form("name")
rs("n_shueifei")=request.form("shueifei")
rs("n_dianfei")=request.form("dianfei")
rs("n_fangzu")=request.form("fangzu")
rs("n_data")=request.form("data")
rs.update
rs.close
set rs=nothing
Response.Write("<script language=javascript>alert('添加成功!');window.location.href='index.asp';</script>")
end if
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>ASP学习题</title>
</head>

<body>

<form action="tj.asp?act=tj" method="post" name="form1" id="form1">
<table width="100%" border="0">
<tr>
<td width="13%">租客名称:</td>
<td width="87%"><label>
<input type="text" name="name" id="name" />
</label></td>
</tr>
<tr>
<td>水费:</td>
<td><label>
<input type="text" name="shueifei" id="shueifei" />
</label></td>
</tr>
<tr>
<td>电费:</td>
<td><label>
<input type="text" name="dianfei" id="dianfei" />
</label></td>
</tr>
<tr>
<td>房租费:</td>
<td><label>
<input type="text" name="fangzu" id="fangzu" />
</label></td>
</tr>
<tr>
<td>日期时间:</td>
<td><label>
<input type="text" name="data" id="data" />
<input type="submit" name="button" id="button" value="提交" />
</label></td>
</tr>
</table>

</form>
</body>
</html>
<%
conn.close
set conn=nothing
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
透彻还清心的繁花G
2010-01-29 · TA获得超过3774个赞
知道小有建树答主
回答量:1674
采纳率:33%
帮助的人:815万
展开全部
1楼的回答正确...

1.
要不就不要那么麻烦..
直接把if Request.form("act")="tj" then
改成
if request.form<>"" then

2.
if name="" or shueifei="" then
把这句改成
if request("name")="" or request("shueifei")="" then
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友fe63ddb7a
推荐于2016-08-13 · TA获得超过222个赞
知道小有建树答主
回答量:519
采纳率:0%
帮助的人:243万
展开全部
if Request.form("act")="tj" then
这里出错了。。。act不是从表单里传过来的。。
把这个改为:if Request("act")="tj" then
或:if Request.QueryString("act")="tj" then
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式