ASP數(shù)據(jù)島操作類
<%
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' programming by smartpig '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
class tbgrid
public datasource '數(shù)據(jù)源
public style '表格總風(fēng)格
public headstyle '表頭風(fēng)格
public headitemstyle '表頭單獨(dú)風(fēng)格
public itemstyle '單元格獨(dú)立網(wǎng)絡(luò)
public headsort '表頭是否顯示排序功能
public columns '需要顯示的列元素
public alternate '是否交替風(fēng)格
public alternatestyle '偶數(shù)行風(fēng)格
public normalstyle '正常風(fēng)格
public defaultstyle '默認(rèn)風(fēng)格簇
public pagesize '頁(yè)大小
public allowpageing '是否分頁(yè)
public pageingstyle '頁(yè)數(shù)風(fēng)格
private templates '自定義單元項(xiàng)
private curpage '當(dāng)前頁(yè)
private pagestart '頁(yè)面開(kāi)始運(yùn)行時(shí)間
'內(nèi)容之間的關(guān)系
'columns.add "field","headtext"
'addtemplate("headtext",template)
'itemstyle.add "field","style:adsasd"
'headsort.add "field",true
'datasource(columns.keys(i))
private sub class_initialize ' 設(shè)置 initialize 事件。
set itemstyle = createobject("scripting.dictionary")
set headsort = createobject("scripting.dictionary")
set headitemstyle = createobject("scripting.dictionary")
set columns = createobject("scripting.dictionary")
set templates = createobject("scripting.dictionary")
set datasource = createobject("adodb.recordset")
alternate = 0
pagestart = timer
end sub
private sub class_terminate ' 設(shè)置 terminate 事件。
set itemstyle = nothing
set headsort = nothing
set headitemstyle = nothing
set columns = nothing
set datasource = nothing
end sub
private sub inittable()
'set fieldsnum = datasource.fields.count
'set rowsnum = datasource.recordcount
if columns.count = 0 then
for i = 0 to datasource.fields.count -1
columns.add datasource.fields(i).name,datasource.fields(i).name
response.write(datasource.fields(i).name)
next
end if
if isempty(style) and isempty(normalstyle) then
defaultstyle = 1
else
defaultstyle = style
end if
curpage = cint(request.querystring("page"))
if curpage = "" then
curpage = 1
end if
if pagesize = empty then
pagesize = 10
end if
select case defaultstyle
case 1
style ="align=center border=0 cellpadding=4 cellspacing=1 bgcolor='#cccccc'"
alternate = 1
headstyle = "height=25 style=""background-color:#006699;color:#ffffff"""
alternatestyle = "bgcolor=#ffffff height=25"
normalstyle = "height=25 bgcolor=#f5f5f5"
allowpageing = true
tbgrid1.pageingstyle = "bgcolor='#f5f5f5' align='right'"
case 2
style ="align=center border=0 cellpadding=4 cellspacing=1 bgcolor='#cccccc'"
alternate = 0
headstyle = "height=25 style=""background-color:#ffffff"""
alternatestyle = "bgcolor=#ffffff height=25"
normalstyle = "height=25 bgcolor=#ffffff"
case else
end select
end sub
public sub addtemplate(byval columnname,byval template)
columns.add columnname,columnname
templates.add columnname,template
end sub
public sub show()
inittable()
dim tablestr
dim tdstart,tdend,tbstyle,tbcontent
dim currow
dim clm
dim regex,match,matches
tablestr = "" & vbcrlf
'draw table head
response.write(tablestr)
response.write("")
for each clm in columns.keys()
tbstyle = headstyle & " " & headitemstyle(clm)
tdstart = ""
tdend = "" & vbcrlf
response.write(tdstart)
'加入表頭排序功能
'code by redsun
'date:2005-1-17
if headsort(clm) then
response.write sort(clm,columns(clm))
else
response.write(columns(clm))
end if
response.write(tdend)
next
response.write("" & vbcrlf)
'draw table items
currow = 1
if allowpageing <> empty then
datasource.pagesize = pagesize
else
datasource.pagesize = datasource.recordcount
end if
if curpage < 1 then
datasource.absolutepage = 1
end if
if curpage >= datasource.pagecount then
datasource.absolutepage = datasource.pagecount
end if
if curpage >= 1 and curpage <= datasource.pagecount then
datasource.absolutepage = curpage
end if
for currow = 1 to datasource.pagesize
if datasource.eof then
exit for
end if
response.write("")
for each clm in columns.keys()
if alternate = 0 then
tbstyle = normalstyle & " " & itemstyle(clm)
else
if currow mod 2 = 0 then
tbstyle = alternatestyle & " " & itemstyle(clm)
else
tbstyle = normalstyle & " " & itemstyle(clm)
end if
end if
tdstart = ""
tdend = "" & vbcrlf
if templates(clm) = empty then
tbcontent = datasource(clm)
else
tbcontent = templates(clm)
set regex = new regexp
regex.pattern= "{[a-za-z0-9_-]+}"
regex.ignorecase = true
regex.global = true
set matches=regex.execute(templates(clm))
for each match in matches
on error resume next
tbcontent = replace(tbcontent,match.value,datasource(mid(match.value,2,len(match.value)-2)),1)
next
end if
response.write(tdstart)
response.write(tbcontent)
response.write(tdend)
next
response.write("" & vbcrlf)
datasource.movenext
next
'draw pageing row
if datasource.pagecount > 1 and lcase(pageingstyle) <> "none" then
dim i,endpage,startpage
response.write("")
response.write("")
'改進(jìn)分頁(yè)功能
'code by redsun
'date:2005-1-17
if curpage>4 then
if curpage+2
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' programming by smartpig '
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
class tbgrid
public datasource '數(shù)據(jù)源
public style '表格總風(fēng)格
public headstyle '表頭風(fēng)格
public headitemstyle '表頭單獨(dú)風(fēng)格
public itemstyle '單元格獨(dú)立網(wǎng)絡(luò)
public headsort '表頭是否顯示排序功能
public columns '需要顯示的列元素
public alternate '是否交替風(fēng)格
public alternatestyle '偶數(shù)行風(fēng)格
public normalstyle '正常風(fēng)格
public defaultstyle '默認(rèn)風(fēng)格簇
public pagesize '頁(yè)大小
public allowpageing '是否分頁(yè)
public pageingstyle '頁(yè)數(shù)風(fēng)格
private templates '自定義單元項(xiàng)
private curpage '當(dāng)前頁(yè)
private pagestart '頁(yè)面開(kāi)始運(yùn)行時(shí)間
'內(nèi)容之間的關(guān)系
'columns.add "field","headtext"
'addtemplate("headtext",template)
'itemstyle.add "field","style:adsasd"
'headsort.add "field",true
'datasource(columns.keys(i))
private sub class_initialize ' 設(shè)置 initialize 事件。
set itemstyle = createobject("scripting.dictionary")
set headsort = createobject("scripting.dictionary")
set headitemstyle = createobject("scripting.dictionary")
set columns = createobject("scripting.dictionary")
set templates = createobject("scripting.dictionary")
set datasource = createobject("adodb.recordset")
alternate = 0
pagestart = timer
end sub
private sub class_terminate ' 設(shè)置 terminate 事件。
set itemstyle = nothing
set headsort = nothing
set headitemstyle = nothing
set columns = nothing
set datasource = nothing
end sub
private sub inittable()
'set fieldsnum = datasource.fields.count
'set rowsnum = datasource.recordcount
if columns.count = 0 then
for i = 0 to datasource.fields.count -1
columns.add datasource.fields(i).name,datasource.fields(i).name
response.write(datasource.fields(i).name)
next
end if
if isempty(style) and isempty(normalstyle) then
defaultstyle = 1
else
defaultstyle = style
end if
curpage = cint(request.querystring("page"))
if curpage = "" then
curpage = 1
end if
if pagesize = empty then
pagesize = 10
end if
select case defaultstyle
case 1
style ="align=center border=0 cellpadding=4 cellspacing=1 bgcolor='#cccccc'"
alternate = 1
headstyle = "height=25 style=""background-color:#006699;color:#ffffff"""
alternatestyle = "bgcolor=#ffffff height=25"
normalstyle = "height=25 bgcolor=#f5f5f5"
allowpageing = true
tbgrid1.pageingstyle = "bgcolor='#f5f5f5' align='right'"
case 2
style ="align=center border=0 cellpadding=4 cellspacing=1 bgcolor='#cccccc'"
alternate = 0
headstyle = "height=25 style=""background-color:#ffffff"""
alternatestyle = "bgcolor=#ffffff height=25"
normalstyle = "height=25 bgcolor=#ffffff"
case else
end select
end sub
public sub addtemplate(byval columnname,byval template)
columns.add columnname,columnname
templates.add columnname,template
end sub
public sub show()
inittable()
dim tablestr
dim tdstart,tdend,tbstyle,tbcontent
dim currow
dim clm
dim regex,match,matches
tablestr = "" & vbcrlf
'draw table head
response.write(tablestr)
response.write("")
for each clm in columns.keys()
tbstyle = headstyle & " " & headitemstyle(clm)
tdstart = ""
tdend = "" & vbcrlf
response.write(tdstart)
'加入表頭排序功能
'code by redsun
'date:2005-1-17
if headsort(clm) then
response.write sort(clm,columns(clm))
else
response.write(columns(clm))
end if
response.write(tdend)
next
response.write("" & vbcrlf)
'draw table items
currow = 1
if allowpageing <> empty then
datasource.pagesize = pagesize
else
datasource.pagesize = datasource.recordcount
end if
if curpage < 1 then
datasource.absolutepage = 1
end if
if curpage >= datasource.pagecount then
datasource.absolutepage = datasource.pagecount
end if
if curpage >= 1 and curpage <= datasource.pagecount then
datasource.absolutepage = curpage
end if
for currow = 1 to datasource.pagesize
if datasource.eof then
exit for
end if
response.write("")
for each clm in columns.keys()
if alternate = 0 then
tbstyle = normalstyle & " " & itemstyle(clm)
else
if currow mod 2 = 0 then
tbstyle = alternatestyle & " " & itemstyle(clm)
else
tbstyle = normalstyle & " " & itemstyle(clm)
end if
end if
tdstart = ""
tdend = "" & vbcrlf
if templates(clm) = empty then
tbcontent = datasource(clm)
else
tbcontent = templates(clm)
set regex = new regexp
regex.pattern= "{[a-za-z0-9_-]+}"
regex.ignorecase = true
regex.global = true
set matches=regex.execute(templates(clm))
for each match in matches
on error resume next
tbcontent = replace(tbcontent,match.value,datasource(mid(match.value,2,len(match.value)-2)),1)
next
end if
response.write(tdstart)
response.write(tbcontent)
response.write(tdend)
next
response.write("" & vbcrlf)
datasource.movenext
next
'draw pageing row
if datasource.pagecount > 1 and lcase(pageingstyle) <> "none" then
dim i,endpage,startpage
response.write("")
response.write("")
'改進(jìn)分頁(yè)功能
'code by redsun
'date:2005-1-17
if curpage>4 then
if curpage+2
相關(guān)文章
- ASP怎么談到應(yīng)用到類的?
- 檢測(cè)函數(shù) asp class
- 遭遇ASP類的事件設(shè)計(jì)
- ASP高亮類
- Object對(duì)象的一些的隱藏函數(shù)介紹
- 淺談ASP中的類
- 在VBScript中使用類
- ASP 類專題
- 代碼與頁(yè)面的分離
- ASP代碼的對(duì)象化
- 一個(gè)asp快速字符串連接類
- 一個(gè)簡(jiǎn)單的asp數(shù)據(jù)庫(kù)操作類
- ASP類編寫(xiě)詳細(xì)說(shuō)明
- 實(shí)現(xiàn)支持邏輯搜索/單詞搜索/詞組搜索+支持OR/AND關(guān)鍵字的VBS CLASS!
- ASP類Class入門 推薦
- 創(chuàng)建一個(gè)ASP通用分頁(yè)類
- 如何編寫(xiě)一個(gè)ASP類
- 一個(gè)ACCESS數(shù)據(jù)庫(kù)訪問(wèn)的類第1/3頁(yè)
- 分頁(yè)類,異常類
- ASP 類 Class入門