ASP类的写法
ASP类的写法
发布时间:2016-12-29 来源:查字典编辑
摘要:

<%

Class myClassName

Private int_ID '分类id

'类初始化

Private Sub Class_Initialize()

m_strError = ""

End Sub

'类释放

Private Sub Class_Terminate()

m_strError = ""

End Sub

'-----读写各个属性---------------------------

Public Property Get ID

ID = int_ID

End Property

Public Property Let ID(intId)

int_ID = intId

End Property

public Function method()

End Function

End Class

%>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类