表單部分
處理頁面
<% for i=1 to 9
call inseartinto
next
翻版必究
"dim xm,xb,tel,address,yewu,beizhu
xm=request("xm"&i)
xb=request("xb"&i)
tel=request("tel"&i)
address=request("address"&i)
yewu=request("yewu"&i)
beizhu=request("beizhu"&i)
if not xm="" then
set rs=server.createobject("adodb.recordset")
sql="select ** from 客戶資料 where **='"&tel&"'"
rs.open sql,conn,1,1
if not rs.recordcount=0 then
response.write "此號碼已存在,請重新輸入"
else
sql="insert into 客戶資料(姓名,性別,**,位址,業務員,備註)values('"&xm&"','"&xb&"','"&tel&"','"&address&"','"&yewu&"','"&beizhu&"')"
conn.execute(sql)
conn.close
set conn=nothing
end if
end if
end sub
%>
<% response.write "9條記錄已加入資料庫"
%>
繼續新增
ASP之ADO的新增新記錄
傻子的事情越來越雜了,再也不可能去做ppc的專案了,這幾天都在做雜活,今天修改這個 的bug,明天修改那個 的bug,美國人怎麼這麼無聊呢,每天盡找bug了,更鬱悶的是公司高手這麼多,為什麼讓乙個傻子來做這種無聊的活呢,多麼想學windows mobile的程式設計啊,多麼渴望做那類的專案啊,可惜在...
ASP獲取新增記錄ID值的方法
這篇文章主要介紹了asp獲取新增記錄id值的方法,分別介紹了asp access2000 asp sql server 2000兩種資料庫的獲取方法,需要的朋友可以參考下 asp access2000效果可以看下具體51搜尋展示結合xunsearch全文檢索技術,可以達到毫秒級的資料搜尋 1.要獲取...
mybatis批量修改,批量新增
mybatis批量修改 批量新增sql語句 1 單個新增 insert into t user user name,mobile values 2 新增並返回主鍵 keyproperty的屬性是要返回的主鍵欄位的名稱 insert into t user user name,mobile value...