手机
当前位置:查字典教程网 >编程开发 >ASP教程 >ASP类的写法
ASP类的写法
摘要:

<%

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类的写法】相关文章:

CJJ专用ASP类库中的某个class

遭遇ASP类的事件设计

ASP Request对象的使用

ASP的NextRecordset和GetRows方法

ASP的天空小偷

经典的分页完整程序+注释

ASP操作Excel的方法

ASP代码的对象化

asp中for循环的使用方法

ASP常用的几个功能模块

精品推荐
分类导航