服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - ASP类的写法

ASP类的写法

2019-10-29 14:51asp教程网 ASP教程

ASP类的写法

  1. <%  
  2. Class myClassName  
  3. Private int_ID '分类id  
  4. '类初始化  
  5. Private Sub Class_Initialize()  
  6. m_strError = ""  
  7. End Sub  
  8.  
  9. '类释放  
  10. Private Sub Class_Terminate()  
  11. m_strError = ""  
  12. End Sub  
  13.  
  14. '-----读写各个属性---------------------------  
  15. Public Property Get ID  
  16. ID = int_ID  
  17. End Property  
  18.  
  19. Public Property Let ID(intId)  
  20. int_ID = intId  
  21. End Property 
  22.  
  23. public Function method()  
  24. End Function  
  25. End Class 
  26. %> 

延伸 · 阅读

精彩推荐