Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > asp函数/类库

asp类的写法

来源:中文源码网    浏览:176 次    日期:2024-03-27 12:40:07
【下载文档:  asp类的写法.txt 】


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 Propertypublic Function method() End Function End Class%>

相关内容