这是类属性的属性过程Get/Let是一对,分别是设置和得到属性过程。
一般属性过程的概念涉及一些OOP(面向对象)基础知识,这方面的知识比较多,反正一两句话讲不完。简单的说就是
类、对象的概念。
在Asp里可以用
Class [类名]
………
End Class
的关键字来定义一个类,累的属性是私有的,当然也可以定义成公有的这个无所谓。
如果是私有属性就需要
public property get getdate()
........
........
end property
这样的属性过程来得到属性
比如
Class [类名]
private dgetdate
public property get getdate()
getdate=dgetdate
end property
public property let getdate(vDate)
dgetdate=vDate
end property
End Class
这样就定义了一对属性过程来操作私有的dgetdate属性,最好的话楼主去看一些关于面向对象程序设计的书。然后再来学习VBScript中的面向对象。