关于ASP类的写法
来源:爱站网时间:2019-09-18编辑:网友分享
ASP类的写法有非常多,但是对于很多新手朋友们来说都不是非常的了解,那么今天就让爱站小编为大家介绍关于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类的写法,希望上面的这些写法可以帮助你更好的书写ASP类,不知您又是如何书写ASP类的,是否也有一些想要分享的技巧呢?