亚洲欧洲日产国码无码,少妇把腿扒开让我添69式漫画,粗暴被双龙灌满两根堵住,成人片色情影院www成全影视

51網(wǎng)絡(luò)科技專業(yè)提供

香港空間

美國空間

PHP空間

、

國內(nèi)免備案空間

月付空間

、

免備案虛擬主機

,支持試用30天!
售前客服
在線咨詢
在線咨詢
售后服務(wù)
在線咨詢
微信咨詢
免備案空間咨詢
 
推薦產(chǎn)品
    300M國內(nèi)免備案空間
    300M網(wǎng)站空間,送60M數(shù)據(jù)庫!
    現(xiàn)價只要:22元/月
    500M國內(nèi)免備案空間
    500M網(wǎng)站空間,送100M數(shù)據(jù)庫!
    現(xiàn)價只要:29元/月
    1G國內(nèi)免備案空間
    1G網(wǎng)站空間,送300M數(shù)據(jù)庫!
    現(xiàn)價只要:39元/月
    500M香港免備案空間
    500M網(wǎng)站空間,送160M數(shù)據(jù)庫!
    現(xiàn)價只要:26元/月
    1G香港免備案空間
    1G網(wǎng)站空間,送300M數(shù)據(jù)庫!
    現(xiàn)價只要:36元/月
    100M美國空間
    100M網(wǎng)站空間,送30M數(shù)據(jù)庫!
    現(xiàn)價只要:12.8元/月
 
您的當前位置:首頁 > 客服中心 > 數(shù)據(jù)庫常見問題 > 正文
ASP連接access數(shù)據(jù)庫例程
文章來源:51網(wǎng)絡(luò)科技  點擊數(shù):  更新時間:2012/12/16 14:15:33
購買國內(nèi)免備案空間購買香港空間【不限iis】寬屏網(wǎng)站制作【還送手機網(wǎng)站】
香港云主機/99元/月國內(nèi)空間【免費備案】 特價網(wǎng)站空間
.Net專用空間網(wǎng)站快速排名 游戲空間【支持月付】
<%
Dim mode
mode=request.form("text4")
if mode=1 then
name=request.form("text1")
age=request.form("text2")
addr=request.form("text3")
if not isnumeric(age) then response.write "age must be number!<a href=javascript:history.go(-1)>try again</a>":response.end
age=clng(age)
end if '********************************************************************
' 與AccessDB相關(guān)的連接信息
' 可以參照它建立您的數(shù)據(jù)庫連接
'********************************************************************
Dim conn,rs,dbpath
Set conn=Server.CreateObject("ADODB.Connection")
Set rs=Server.CreateObject("ADODB.RecordSet")
dbpath=Server.MapPath("rwdata/db_test_com.mdb")
conn.Open "Driver={Microsoft Access Driver (*.mdb)}; DBQ="&dbpath
'********************************************************************
'********************************************************************

dim strsql
'********************************************************************
' 讀數(shù)據(jù)庫相關(guān)操作
sub readdb()
strsql="select * from test" 
rs.open strsql,conn,1,1
if rs.EOF then response.write "no record at all":exit sub
response.write "<table border=1>"
response.write "<tr>"
for i=0 to rs.Fields.Count-1
response.write "<td><font color=blue>"&rs.Fields(i).Name&"</font></td>"
next
response.write "</tr>"
while not rs.EOF
response.write "<tr>"
for i=0 to rs.Fields.Count-1
response.write "<td>"&rs.Fields(i).value&"</td>" 
next
response.write "</tr>"
rs.MoveNext
wend
response.write "</table>"
rs.Close
end sub
'********************************************************************


'********************************************************************
' 寫數(shù)據(jù)庫相關(guān)
sub insertdata()
strsql="INSERT INTO test(name,age,addr) valueS('"&name&"',"&age&",'"&addr&"')"
rs.Open strsql,conn,1,3
end sub
'********************************************************************

if mode=1 then
call insertdata()
response.write "insert ok!"
elseif mode=2 then
call readdb()
end if

'********************************************************************
' 釋放數(shù)據(jù)庫連接對象
set rs=nothing
set conn=nothing
%>
<HTML>
<HEAD>
<TITLE></TITLE>
<script language=javascript>
function clickit(flag){
var form1=document.form2
form1.text4.value=flag;

if (flag==1){
if (form1.text1.value==""){
alert("name cant empty!");
return false;

if (form1.text2.value==""){
alert("age cant empty!");
return false;

if (form1.text3.value==""){
alert("addr cant empty!");
return false;
}

}
form1.submit();
return true; 
}
</script>
</HEAD>
<BODY>
<form method=post name=form2>
name:<INPUT type="text" id=text1 name=text1 size=12>
age:<INPUT type="text" id=text2 name=text2 size=12>
city:<INPUT type="text" id=text3 name=text3 size=12><br>
<INPUT type="hidden" id=text4 name=text4>
<INPUT type="button" value="write" id=button1 name=button1 onclick="clickit(1)">
<INPUT type="button" value="read" id=button2 name=button2 onclick="clickit(2)">
</form>
</BODY>
</HTML>


國內(nèi)、香港、美國、全免備案hnscxh.com--51網(wǎng)絡(luò)科技,專業(yè)免備案空間提供商!
本文網(wǎng)址:http://hnscxh.com/faq_3/113.html
相關(guān)文章