由于我们要通过积分判断用户级别,这里定义了一个私有函数:
Private Function getlevel()
bpoint=killint(bpoint,0,0)
If bpoint<500 Then
blevel="初级会员"
ElseIf bpoint>=500 And bpoint<=100 Then
blevel="高级会员"
Else
blevel="终极会员"
End If
Getlevel=blevel
End Function
我们要得是回送用户的信息,必须定义一个public公用函数,显示信息:
Public Function showuser()
response.write("<h5>以下显示<font color=red>"&bname&"</font>的资料:</h5>")
response.write("<h5>性别:<font color=red>"&bsex&"</font></h5>")
response.write("<h5>积分:<font color=red>"&bpoint&"</font></h5>")
getlevel
response.write("<h5>级别:<font color=red>"&blevel&"</font></h5>")
End Function
End class
使用这个类的时候这样使用:(我在这里写了一个表单处理的)
Set blueideauser=new blueidea
blueideauser.getname=Trim(request("id"))
blueideauser.getsex=request("sex")
blueideauser.getpoint=request("point")
blueideauser.showuser
是不是想看看效果,那就看看这里: http://www.5do8.com/net/aspclass/class.asp
控制读取数据库信息的类:
参考源码
''名称:ado_5do8
''作用:读取数据库的各项操作
''来源-耕耘村http://www.5do8.com http://www.Blueidea.com-5do8
''创作:5do8
''联系:5do8@5do8.com
''更新:2005年11月13日
''授权:蓝色理想网站积分超过3000,耕耘村所有注册用户
''类的接口:ado_5do8.ConnectString=数据库绝对路径
''ado_5do8.rs_top 调用数目,表的名称
Class ado_5do8
Private conn,sqlstr,rs,iid,itable,isession
''sqlstr:数据库地址,为绝对路径,私有
''conn:打开数据库的连接,私有
''------------------------------------------------------------------
rem 消除一些不想要的数字
Private Function litter_in(r1,r2)
If IsNumeric(r1) and IsNumeric(r2) Then
Dim dimrr
If r1>r2 Then
dimrr=r2
Else
dimrr=r1
End If
Else
dimrr=0
End if
litter_in=dimrr
End Function
''-----------------------------------------------------------------
Private Function killint(i,killstr,killsub)
If Not IsNumeric(i) Then
i=killstr
ElseIf i<=0 Then
i=killsub
End if
killint=Int(Left(i,5))
End Function
''-----------------------------------------------------------
private Sub startconn()
On Error Resume Next
Set conn=server.CreateObject("adodb.connection")
str