一、文法
<1>語句
<%...........%>
<2>定義變數dim語句
<%
dim a,b
a=10
b=”ok!”
%>
注意:定義的變數可以是數值型,也可以是字元或者其他類型的
<3>簡單的控制流程程語句
1. If 條件1 then
語句1
elseif 條件2 then
語句2
else
語句3
end if
2.while 條件
語句
wend
3.for count=1 to n step m
語句1
exit for
語句2
next
二.ASP資料庫簡單操作教程
<1>.資料庫連接(用來單獨編製串連檔案conn.asp)
<%
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("\bbs\db1\user.mdb")
%>
(用來串連bbs\db1\目錄下的user.mdb資料庫)
<2>顯示資料庫記錄
原理:將資料庫中的記錄一一顯示到用戶端瀏覽器,依次讀出資料庫中的每一條記錄
如果是從頭到尾:用迴圈並判斷指標是否到末 使用: not rs.eof
如果是從尾到頭:用迴圈並判斷指標是否到開始 使用:not rs.bof
<!--#include file=conn.asp--> (包含conn.asp用來開啟bbs\db1\目錄下的user.mdb資料庫)
<%
set rs=server.CreateObject("adodb.recordset") (建立recordset對象)
sqlstr="select * from message" ---->(message為資料庫中的一個資料表,即你要顯示的資料所存放的資料表)
rs.open sqlstr,conn,1,3 ---->(表示開啟資料庫的方式)
rs.movefirst ---->(將指標移到第一條記錄)
while not rs.eof ---->(判斷指標是否到末尾)
response.write(rs("name")) ---->(顯示資料表message中的name欄位)
rs.movenext ---->(將指標移動到下一條記錄)
wend ---->(迴圈結束)
rs.close
conn.close 這幾句是用來關閉資料庫
set rs=nothing
set conn=nothing
%>
其中response對象是伺服器向用戶端瀏覽器發送的資訊
<3>增加資料庫記錄
增加資料庫記錄用到rs.addnew,rs.update兩個函數
<!--#include file=conn.asp--> (包含conn.asp用來開啟bbs\db1\目錄下的user.mdb資料庫)
<%
set rs=server.CreateObject("adodb.recordset") (建立recordset對象)
sqlstr="select * from message" ---->(message為資料庫中的一個資料表,即你要顯示的資料所存放的資料表)
rs.open sqlstr,conn,1,3 ---->(表示開啟資料庫的方式)
rs.addnew 新增加一條記錄
rs("name")="xx" 將xx的值傳給name欄位
rs.update 重新整理資料庫
rs.close
conn.close 這幾句是用來關閉資料庫
set rs=nothing
set conn=nothing
%>
<4>刪除一條記錄
刪除資料庫記錄主要用到rs.delete,rs.update
<!--#include file=conn.asp--> (包含conn.asp用來開啟bbs\db1\目錄下的user.mdb資料庫)
<%
dim name
name="xx"
set rs=server.CreateObject("adodb.recordset") (建立recordset對象)
sqlstr="select * from message" ---->(message為資料庫中的一個資料表,即你要顯示的資料所存放的資料表)
rs.open sqlstr,conn,1,3 ---->(表示開啟資料庫的方式)
while not rs.eof
if rs.("name")=name then
rs.delete
rs.update 查詢資料表中的name欄位的值是否等於變數name的值"xx",如果符合就執行刪除,
else 否則繼續查詢,直到指標到末尾為止
rs.movenext
emd if
wend
rs.close
conn.close 這幾句是用來關閉資料庫
set rs=nothing
set conn=nothing
%>