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
%> 展开
<%@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
%> 展开
4个回答
展开全部
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
试试
if name="" or shueifei="" then
首先,为空不显示是因为,name\shueifei 这是变量,没有值的。你要request
第二,没有插入数据可能因为:rs.open sql,conn,1,3
你修改成:rs.open sql,conn,3,3
试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先,你看看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
%>
再试一试如下代码:
<%@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
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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
1.
要不就不要那么麻烦..
直接把if Request.form("act")="tj" then
改成
if request.form<>"" then
2.
if name="" or shueifei="" then
把这句改成
if request("name")="" or request("shueifei")="" then
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if Request.form("act")="tj" then
这里出错了。。。act不是从表单里传过来的。。
把这个改为:if Request("act")="tj" then
或:if Request.QueryString("act")="tj" then
这里出错了。。。act不是从表单里传过来的。。
把这个改为:if Request("act")="tj" then
或:if Request.QueryString("act")="tj" then
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询