用数组实现数据记录的批量录入方法
程序员文章站
2022-06-10 18:31:07
<%rem 文章题目 中利用数组实现记录的批量录入方法(原创)作者:yanek联系email:aspboy@263.net%>包括两个文件1。allneeddj.asp:实现表单的生成2...
<%
rem 文章题目 中利用数组实现记录的批量录入方法(原创)
作者:yanek
联系email:aspboy@263.net
%>
包括两个文件
1。allneeddj.asp:实现表单的生成
2. allneeddjresult.asp 处理表单批量录入
3.hbedu.mdb :数据库文件
其数据库结构如下
provinceid:省份编号 数值型
dytaocount:打样套数 数值型
papertaocount:纸样套数 数值型
cpcontent:出片内容 数值型
filename:文件名 文本型
beizhu:备注 备注型
本例子中以10条记录,每条记录6个字段说明.
1。allneeddj.asp
<html>
<head>
<meta http-equiv="content-language" content="zh-cn">
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<meta name="generator" content="microsoft frontpage 4.0">
<meta name="progid" content="frontpage.editor.document">
<title>需求登记</title>
</head>
<body>
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access(小型网站之最爱) driver (*.mdb)};dbq=" & _
server.mappath("hbedu.mdb")
%>
<form method="post" action="allneeddjresult.asp">
<p align="center">
<center>
<table border="1" width="700" bordercolorlight="#ffffff">
<tr>
<td width="660" colspan="6">
<p align="center">需求登记</td>
</tr>
<tr>
<td width="54" align="center">省份</td>
<td width="66" align="center">打样张数</td>
<td width="66" align="center">纸样张数</td>
<td width="66" align="center">出片内容</td>
<td width="80" align="center">文件名</td>
<td width="328" align="center">
<p align="center">备注</td>
</tr>
<%
rem 通过循环动态生成不同名称表单域
for i=1 to 10
%>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from provinceinfo "
rs.open sql,conn,1,1
set rs1=server.createobject("adodb.recordset")
sql1="select * from filename "
rs1.open sql1,conn,1,1
%>
<tr>
<td width="54"><select name="<% response.write"data1"&i %>"
size="1">
<%
do while not rs.eof
if province=cstr(rs("id")) then
rem 文章题目 中利用数组实现记录的批量录入方法(原创)
作者:yanek
联系email:aspboy@263.net
%>
包括两个文件
1。allneeddj.asp:实现表单的生成
2. allneeddjresult.asp 处理表单批量录入
3.hbedu.mdb :数据库文件
其数据库结构如下
provinceid:省份编号 数值型
dytaocount:打样套数 数值型
papertaocount:纸样套数 数值型
cpcontent:出片内容 数值型
filename:文件名 文本型
beizhu:备注 备注型
本例子中以10条记录,每条记录6个字段说明.
1。allneeddj.asp
<html>
<head>
<meta http-equiv="content-language" content="zh-cn">
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<meta name="generator" content="microsoft frontpage 4.0">
<meta name="progid" content="frontpage.editor.document">
<title>需求登记</title>
</head>
<body>
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access(小型网站之最爱) driver (*.mdb)};dbq=" & _
server.mappath("hbedu.mdb")
%>
<form method="post" action="allneeddjresult.asp">
<p align="center">
<center>
<table border="1" width="700" bordercolorlight="#ffffff">
<tr>
<td width="660" colspan="6">
<p align="center">需求登记</td>
</tr>
<tr>
<td width="54" align="center">省份</td>
<td width="66" align="center">打样张数</td>
<td width="66" align="center">纸样张数</td>
<td width="66" align="center">出片内容</td>
<td width="80" align="center">文件名</td>
<td width="328" align="center">
<p align="center">备注</td>
</tr>
<%
rem 通过循环动态生成不同名称表单域
for i=1 to 10
%>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from provinceinfo "
rs.open sql,conn,1,1
set rs1=server.createobject("adodb.recordset")
sql1="select * from filename "
rs1.open sql1,conn,1,1
%>
<tr>
<td width="54"><select name="<% response.write"data1"&i %>"
size="1">
<%
do while not rs.eof
if province=cstr(rs("id")) then
上一篇: C#DataTable去重操作