ASP程序建设的网站怎样实现在网页里批量录入多条数据呢?这个问题对我们初学网站建设的朋友可能不是很了解的,我们煜阳网络建设了近20 年的网站建设,我产带大家来看看 asp + HTML + accecc怎样实现在网页里录入多条数据后,点击保存后录入的每条数据都保存到数据库里的吧,希望可以帮助到有需要的朋友,欢迎同行朋友 胶一起切磋网站建设技术。
可以用for 循环写入或使用数组写入,这里我用for做个例子,比如录入5条记录. html页代码如下(我没有做美化): <html><head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>多条提交</title> </head> <body> <form id="form1" name="form1" method="post" action="bb.asp"> <input type="text" name="a1" /> <input type="text" name="a2" /> <input type="text" name="a3" /> <input type="text" name="a4" /> <input type="text" name="a5" /> <input type="submit" name="Submit" value="提交" /> </form> </body> </html> asp接收页代码如下: <% ConStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("data.mdb") '连接到data数据库 Set Conn=server.CreateObject("ADODB.Connection") Conn.Open ConStr set rs=server.createobject("adodb.recordset") sql="select * from tablename" rs.open sql,conn,3,2 rs.addnew for i=1 to 5 rs("type")=request.form("a"&i) next i rs.update rs.close set rs=nothing %> 以上只是个例子,希望对你有帮助。Tag:批量网页建设网站