Asp類 的數(shù)據(jù)庫領(lǐng)域
代碼如下:
<%@language="vbscript" codepage="936"%>
<%
class newsclass
private zzcn,conn,cnnstr
private title_p,id_p
'對象初始化
private sub class_initialize()
'response.write "初始化
"
call newsconnstart()
end sub
'析構(gòu)函數(shù),在使用 set nothing 釋放對象時(shí),自動執(zhí)行
private sub class_terminate()
'response.write "釋放對象 事件:class_terminate
"
call newsconnend()
end sub
'數(shù)據(jù)庫鏈接函數(shù)
private sub newsconnstart()
set conn = server.createobject("adodb.connection")
cnnstr="driver={microsoft access driver (*.mdb)}; "
cnnstr=cnnstr & "dbq=" & server.mappath("admin/watavase/%29to-dream.mdb")
conn.open cnnstr
'response.write cnnstr & "
"
end sub
private sub newsconnend()
conn.close
set conn = nothing
end sub
'=========================================
'函數(shù)名 getrs()
'獲得 某個(gè)欄目 的 一條 記錄集
'欄目名 lanmu
'每頁幾條記錄 k
'第幾頁 page
'第幾條記錄 n
'日期 riqi 1 為按日期逆序 0 為升序
'=========================================
public function getrs(byval lanmu,byval k,byval page,byval n,byval riqi)
sql = "select * from articleclass where classname = '"&lanmu&"' order by classid desc"
'response.write sql&"
"
set rs=server.createobject("adodb.recordset")
rs.open sql, conn, 1, 1
if not rs.eof then
classid_p = rs("classid")
end if
rs.close
set rs = nothing
if riqi = 1 then
riqi_p = " order by updatetime desc"
else
riqi_p = ""
end if
sql = "select * from article where classid = "&classid_p&""&riqi_p
set rs=server.createobject("adodb.recordset")
rs.open sql, conn, 1, 1
rs.pagesize = k
if not rs.eof then
rs.absolutepage = page
end if
i = 0
do while not rs.eof and i < n
i = i + 1
rs.movenext
loop
'response.write "rs
"
if n = i then
title_p = rs("title")
id_p = rs("articleid")
'response.write title_p
'response.write id_p
else
title_p = null
id_p = null
end if
rs.close
set rs = nothing
end function
'----------------------------------------
'
'屬性寫 標(biāo)題
public property let title(byval v)
title_p = v
end property
'屬性讀 標(biāo)題
public property get title()
title = title_p
end property
'屬性寫 標(biāo)題id
public property let id(byval v)
id_p = v
end property
'屬性讀 標(biāo)題id
public property get id()
id = id_p
end property
end class
%>
<%@language="vbscript" codepage="936"%>
<%
class newsclass
private zzcn,conn,cnnstr
private title_p,id_p
'對象初始化
private sub class_initialize()
'response.write "初始化
"
call newsconnstart()
end sub
'析構(gòu)函數(shù),在使用 set nothing 釋放對象時(shí),自動執(zhí)行
private sub class_terminate()
'response.write "釋放對象 事件:class_terminate
"
call newsconnend()
end sub
'數(shù)據(jù)庫鏈接函數(shù)
private sub newsconnstart()
set conn = server.createobject("adodb.connection")
cnnstr="driver={microsoft access driver (*.mdb)}; "
cnnstr=cnnstr & "dbq=" & server.mappath("admin/watavase/%29to-dream.mdb")
conn.open cnnstr
'response.write cnnstr & "
"
end sub
private sub newsconnend()
conn.close
set conn = nothing
end sub
'=========================================
'函數(shù)名 getrs()
'獲得 某個(gè)欄目 的 一條 記錄集
'欄目名 lanmu
'每頁幾條記錄 k
'第幾頁 page
'第幾條記錄 n
'日期 riqi 1 為按日期逆序 0 為升序
'=========================================
public function getrs(byval lanmu,byval k,byval page,byval n,byval riqi)
sql = "select * from articleclass where classname = '"&lanmu&"' order by classid desc"
'response.write sql&"
"
set rs=server.createobject("adodb.recordset")
rs.open sql, conn, 1, 1
if not rs.eof then
classid_p = rs("classid")
end if
rs.close
set rs = nothing
if riqi = 1 then
riqi_p = " order by updatetime desc"
else
riqi_p = ""
end if
sql = "select * from article where classid = "&classid_p&""&riqi_p
set rs=server.createobject("adodb.recordset")
rs.open sql, conn, 1, 1
rs.pagesize = k
if not rs.eof then
rs.absolutepage = page
end if
i = 0
do while not rs.eof and i < n
i = i + 1
rs.movenext
loop
'response.write "rs
"
if n = i then
title_p = rs("title")
id_p = rs("articleid")
'response.write title_p
'response.write id_p
else
title_p = null
id_p = null
end if
rs.close
set rs = nothing
end function
'----------------------------------------
'
'屬性寫 標(biāo)題
public property let title(byval v)
title_p = v
end property
'屬性讀 標(biāo)題
public property get title()
title = title_p
end property
'屬性寫 標(biāo)題id
public property let id(byval v)
id_p = v
end property
'屬性讀 標(biāo)題id
public property get id()
id = id_p
end property
end class
%>
相關(guān)文章
- ASP怎么談到應(yīng)用到類的?
- 檢測函數(shù) asp class
- 遭遇ASP類的事件設(shè)計(jì)
- ASP高亮類
- Object對象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁面的分離
- ASP代碼的對象化
- 一個(gè)asp快速字符串連接類
- 一個(gè)簡單的asp數(shù)據(jù)庫操作類
- ASP類編寫詳細(xì)說明
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個(gè)ASP通用分頁類
- 如何編寫一個(gè)ASP類
- 一個(gè)ACCESS數(shù)據(jù)庫訪問的類第1/3頁
- 分頁類,異常類
- ASP 類 Class入門