主頁 > 知識庫 > asp實現(xiàn)批量錄入數(shù)據(jù)的實現(xiàn)

asp實現(xiàn)批量錄入數(shù)據(jù)的實現(xiàn)

熱門標簽:沈陽電話機器人公司 廣東語音外呼系統(tǒng)公司 沈陽三五防封電銷卡 虛擬電話外呼系統(tǒng) 云南便宜外呼系統(tǒng)平臺 成都ai外呼系統(tǒng)線路 鄭州智能外呼電銷機器人廠家 鄢陵學校如何做地圖標注 長春公司外呼系統(tǒng)中心
批量錄入在數(shù)據(jù)庫的應(yīng)用中比較廣泛的,關(guān)于批量錄入的方法也有好多種。下面我就結(jié)合我實際中的應(yīng)用,談一下兒我是怎么實現(xiàn)的。主要用到的是form的集合的概念,通過循環(huán)取的所有的集合內(nèi)數(shù)據(jù)。考慮到大家看著方便,我把它集成到了一個頁面。 

下面是具體的代碼:  
batchInput.asp 

'##################################### 
'File Function:批量錄入數(shù)據(jù) 
'Author:Myhon 
'Date:2003-8-19 
'##################################### 
'向數(shù)據(jù)庫寫入數(shù)據(jù) 
SUB writeData() 
dim recCnt,i 
dim fieldName1,fieldName2,fieldName3 
dim conn 
dim sqlStr,connStr 
connStr="Provider=SQLOLEDB.1;Initial Catalog=myDatabase;Data Source=myhon;User Id=sa;PASSWORD=" 
set conn=Server.CreateObject("ADODB.Connection") 
conn.open connStr '建立數(shù)據(jù)庫連接 
recCnt=request.form("stu_num").count '取得共有多少條記錄 
'批量錄入數(shù)據(jù) 
for i=1 to recCnt 
fieldName1=trim(request.form("fieldName1")(i)) 
fieldName2=trim(request.form("fieldName2")(i)) 
fieldName3=trim(request.form("fieldName3")(i)) 
sqlStr="insert into myTable(fieldName1,fieldName2,fieldName3) values('" 
sqlStr=sqlStr  fieldName1  "','" 
sqlStr=sqlStr  fieldName2  "','" 
sqlStr=sqlStr  fieldName3  "')" 
'response.write sqlStr 
conn.execute(sqlStr) 
next 
END SUB 
'顯示成批錄入的界面 
SUB InputData() 
dim recCnt,i 
%> 
form name="bathInputData" action="" method="post"> 
%  
recCnt=cint(request.form("recCnt")) 
for i=1 to recCnt 
%> 
input type="text" name="fieldName1"> 
input type="text" name="fieldName2"> 
input type="text" name="fieldName3"> 

next 
%> 
br> 
input type="submit" name="action" value="提交"> 
/form> 

END SUB 
'指定要批量錄入多少條記錄 
SUB assignHowMuch() 
%> 
!------指定要錄入多少條記錄--------------> 
form name="form1" action="" method="post"> 
您要錄入的記錄的條數(shù):input type="text" name="recCnt"> 
input type="submit" name="action" value="下一步>>"> 
/form> 

END SUB 
if request.form("action")="下一步>>" then 
Call InputData() '顯示成批錄入界面 
elseif request.form("action")="提交" then Call writeData() '向數(shù)據(jù)庫批量寫入數(shù)據(jù) 
else 
Call assignHowMuch() '顯示指定錄入多少條記錄的界面 
end if 
%>

標簽:遼陽 四平 平頂山 湖北 孝感 朝陽 防城港 馬鞍山

巨人網(wǎng)絡(luò)通訊聲明:本文標題《asp實現(xiàn)批量錄入數(shù)據(jù)的實現(xiàn)》,本文關(guān)鍵詞  asp,實現(xiàn),批量,錄入,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp實現(xiàn)批量錄入數(shù)據(jù)的實現(xiàn)》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp實現(xiàn)批量錄入數(shù)據(jù)的實現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章