当前位置: 移动技术网 > IT编程>开发语言>Asp > ASP类的写法

ASP类的写法

2017年12月12日  | 移动技术网IT编程  | 我要评论
<%
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
%>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网