怎样用asp提交表单数据到sql中??完全不懂,菜鸟,希望详细点
有两个页面意识index.html,另一个是index.asp的,请问怎样搞?一定够详细,菜鸟是什么都不懂。。。助人为乐,是高尚的品质!...
有两个页面意识index.html,另一个是index.asp的,请问怎样搞?一定够详细,菜鸟是什么都不懂。。。助人为乐,是高尚的品质!
展开
1个回答
展开全部
纯手打,不保证没有小错误。。。
index.html
<html>
<head>
<title>页面一</title>
</head>
<body>
<form action="index.asp" method="post" >
<input type="text" name="title" ><button>传递数据</button>
</form>
</body>
</html>
index.asp
<%
dbpath="数据库地址" '记得用相对路径,不了解什么是相对路径,自己问度娘。
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("&dbpath&")
title=request("title")
set rs=server.CreateObject("adodb.recordset")
sqlstr="select * from 表名"
rs.open sqlstr,conn,1,3
rs.addnew '新增加一条空记录
rs("title")=title '将xx的值传给name字段
rs.update ’更新数据
rs.close
conn.close ‘这几句是用来关闭数据库
set rs=nothing
set conn=nothing
response.write "数据添加成功<a href="index.html“>返回</a>“
%>
index.html
<html>
<head>
<title>页面一</title>
</head>
<body>
<form action="index.asp" method="post" >
<input type="text" name="title" ><button>传递数据</button>
</form>
</body>
</html>
index.asp
<%
dbpath="数据库地址" '记得用相对路径,不了解什么是相对路径,自己问度娘。
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("&dbpath&")
title=request("title")
set rs=server.CreateObject("adodb.recordset")
sqlstr="select * from 表名"
rs.open sqlstr,conn,1,3
rs.addnew '新增加一条空记录
rs("title")=title '将xx的值传给name字段
rs.update ’更新数据
rs.close
conn.close ‘这几句是用来关闭数据库
set rs=nothing
set conn=nothing
response.write "数据添加成功<a href="index.html“>返回</a>“
%>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询