asp提交表单代码
这个是Add.asp<%@LANGUAGE="VBSCRIPT"CODEPAGE="65001"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTM...
这个是Add.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title>Add</title>
</head>
<body>
<table width="139" height="37" border="0" align="center">
<tr>
<th width="133" scope="col">包车盈利登记表</th>
</tr>
</table>
<table width="507" height="75" border="0">
<tr>
<th width="170" height="32" scope="col">负责人</th>
<th width="168" scope="col">盈利</th>
<th width="155" scope="col">Date</th>
</tr>
<tr>
<th height="37" id="Name" scope="row"><input type="text" /></th>
<td id="doller"><input type="text" /></td>
<td id="date1"> <%=now()%></td>
</tr>
</table>
<form id="form1" name="form1" action="<form action="addsave.asp">">
<input type="submit" name="Enter" id="Enter" value="提交" />
</form>
</body>
</html>
这个是addsave.asp
<%@LANGUAGE="VBScript" codepage="936"%>
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select Name,doller,date from main"
rs.open sql,conn,1,3
rs.addnew
Name=request.form("Name")
doller=request.form("doller")
date1=request.form("date")
rs("Name")=Name
rs("doller")=doller
rs("date")=Date
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
%>
直接打开addsave.asp可以直接添加空白的数据进去数据库
可是用add.asp提交提示
HTTP 错误 404.0 - Not Found 展开
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title>Add</title>
</head>
<body>
<table width="139" height="37" border="0" align="center">
<tr>
<th width="133" scope="col">包车盈利登记表</th>
</tr>
</table>
<table width="507" height="75" border="0">
<tr>
<th width="170" height="32" scope="col">负责人</th>
<th width="168" scope="col">盈利</th>
<th width="155" scope="col">Date</th>
</tr>
<tr>
<th height="37" id="Name" scope="row"><input type="text" /></th>
<td id="doller"><input type="text" /></td>
<td id="date1"> <%=now()%></td>
</tr>
</table>
<form id="form1" name="form1" action="<form action="addsave.asp">">
<input type="submit" name="Enter" id="Enter" value="提交" />
</form>
</body>
</html>
这个是addsave.asp
<%@LANGUAGE="VBScript" codepage="936"%>
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select Name,doller,date from main"
rs.open sql,conn,1,3
rs.addnew
Name=request.form("Name")
doller=request.form("doller")
date1=request.form("date")
rs("Name")=Name
rs("doller")=doller
rs("date")=Date
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
%>
直接打开addsave.asp可以直接添加空白的数据进去数据库
可是用add.asp提交提示
HTTP 错误 404.0 - Not Found 展开
1个回答
展开全部
<form id="form1" name="form1" action="<form action="addsave.asp">"><form id="form1" name="form1" action="addsave.asp">
改成这样后,你再试试.
改成这样后,你再试试.
更多追问追答
追问
http://feiyangyang21.gicp.net:520/Bus/add.asp 这个是那个代码的网页。麻烦帮我看一下可以吗?
追答
页面不正确.有提交,但提交页面好像有问题
<tr>
<th height="37" scope="row"><input name="1" type="text" id="1" /></th>
<td><input name="2" type="text" id="2" /></td>
<td id="3"> 2014/1/1 17:35:26</td>
</tr>
</table>
<form method="post" action="addsave.asp">
<input type="submit" name="Submit" value="提交">
如上所示,这是我查看源码后得到的,两个input的标签为什么跑到form标签外边去了?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询