上一篇:关于在浏览器中执行*.exe文件的深入探讨(z) >>
在ASP 中实现ASP.Net 的DataGrid 功能(转载)
<%
‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’
‘’ Programming By Smartpig ‘’
‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’‘’
Class TBGrid
public DataSource ‘’数据源
public style ‘’表格总风格
public HeadStyle ‘’表头风格
public HeadItemStyle ‘’表头单独风格
public itemStyle ‘’单元格独立网络
public Columns ‘’需要显示的列元素
public Alternate ‘’是否交替风格
public AlternateStyle ‘’偶数行风格
public NormalStyle ‘’正常风格
public DefaultStyle ‘’默认风格簇
public PageSize ‘’页大小
public CurPage ‘’当前页
public AllowPageing ‘’是否分页
public PageingStyle ‘’页数风格
Private Templates ‘’自定义单元项
‘’内容之间的关系
‘’Columns.add "Field","HeadText"
‘’AddTemplate("HeadText",Template)
‘’itemStyle.add "Field","style:adsasd"
‘’DataSource(Columns.Keys(i))
Private Sub Class_Initialize ‘’ 设置 Initialize 事件。
Set itemStyle = 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
End Sub
Private Sub Class_Terminate ‘’ 设置 Terminate 事件。
Set itemStyle = 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
end if
if PageSize = Empty then
PageSize = 10
end if
select Case DefaultStyle
Case 1
Style ="border=1 cellpadding=2 cellspaccing=0 borderColor=#000000 style=""Border-collapse:collapse;font-size:12px"""
Alternate = 1
HeadStyle = "Height=25 bgColor=#CCCCCC"
AlternateStyle = "bgColor=#EEEEEE height=20"
NormalStyle = "height=20"
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 = "<table " & style & ">" & vbCrLF
‘’Draw Table Head
Response.Write(tableStr)
Response.Write("<tr>")
for Each clm in Columns.Keys()
tbStyle = HeadStyle & " " & HeadItemStyle(clm)
tdStart = "<td " & tbStyle & ">"
tdEnd = "</td>"
Response.Write(tdStart)
Response.Write(Columns(clm))
Response.Write(tdEnd)
Next
Response.Write("</tr>" & vbCrLF)
‘’Draw Table items
curRow = 1
if AllowPageing <> Empty then
DataSource.PageSize = PageSize
else
DataSource.PageSize = DataSource.RecordCount
end if
if CurPage = Empty then
CurPage = 1
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("<tr>")
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 = "<td " & tbStyle & ">"
tdEnd = "</td>"
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("</tr>" & vbCrLF)
DataSource.MoveNext
Next
‘’Draw Pageing Row
if DataSource.PageCount > 1 and LCase(pageingStyle) <> "none" then
Dim i
response.write("<tr>")
response.write("<td colspan=" & Columns.Count & " " & PageingStyle & ">")
for i=1 to DataSource.PageCount
if i <> CurPage then
response.write("<a href=‘’" & Request.ServerVariables("SCRIPT_NAME") & "?page=" & i & "‘’>" )
end if
response.write(i)
if i <> CurPage then
response.write("</a>")
end if
response.write(" ")
next
response.write("</td></tr>" & vbCrLf)
end if
‘’Draw Table end
Response.Write("</table>")
end sub
End Class
‘’users Like { UserID,LoginName,Password,RealName,Age,Gender,}
‘’initDB
‘’Rs.Open "Select * from users",Cn
‘’Dim tbGrid1
‘’Set tbGrid1 = New TBGrid
‘’Set tbGrid1.DataSource = Rs
‘’tbGrid1.Columns.add "LoginName","用户名"
‘’tbGrid1.ItemStyle.add "Password","align=right"
‘’tbGrid1.ItemStyle.add "修改","width=100"
‘’tbGrid1.AddTemplate "修改","<a href=‘’aaa.asp?id={UserID}‘’><font color=red>{RealName}</font></a>"
‘’tbGrid1.Columns.add "Password","密码"
‘’tbGrid1.PageSize = 5
‘’tbGrid1.AllowPageing = true
‘’tbGrid1.PageingStyle = "align=right"
‘’tbGrid1.CurPage = CInt(Request("page"))
‘’tbGrid1.Show()
‘’CloseDB
%>
相关文章:
- · 有关windows服务的创建,控制
- · 一个自定义的可以分页,排序,扩展显示grid控件
- · 转贴(电脑报):VBA开发实用指南
- · 蛙蛙推荐: 用web服务传递Dataset的一个简单例子
- · ASP中轻松实现变量名-值变换
- · J2EE还是.NET,这是一个问题
- · VML应用
- · Caching in ASP.NET
- · asp论坛在线人数统计研究
- · 为freetextbox1.6.5上传图片加上水印
- · 自定义配置节处理实现个性化web.config
- · 使用xmlhttp为网站增加股市行情查询功能
- · .Net Enterprise服务器可能太早冠上.Net名号了
- · 维护ASP的会话状态
- · 浅谈引用计数
- · 使你的窗体保留在桌面的最上面
- · 研究心得------->Seskin控件包中SeskinEdit汉字问题的解决办法
- · 建立三层结构的ASP应用程序
- · 研究心得------->CPU信息的获得,比较全面的
- · Sender 的??用:所有Edit共用一???^?V格式
- · override deal with window closing in database application
- · C++ 和 Delphi 的函数覆盖(Override)与重载(overload
- · 正确处理ASP动态网页中的容错机制
- · 几例在ASP存储过程的使用方法
- · 实现让每句话的头一个字母都大写
- · 如何尽快释放掉Connection对象建立的连接?
- · Connection对象的应用
- · 利用ASP打造网站论坛DIY
- · Asp中代码与页面的分离
- · 一个ASP版的图片浏览管理器
- · 实现有管理功能的ASP留言板
- · 编译asp应用程序成为exe文件
- · 如何准确定时运行ASP文件
- · ASP整合的一个SQL语句类
- · Jmail发信的实例,模块化随时调用
- · ASP字数计算函数
- · 无刷新随时取得用户当前活动信息
- · ASP自定义函数,仿VBA中域函数DLookup
