手机
当前位置:查字典教程网 >编程开发 >ASP教程 >Asp 返回引用类型函数代码
Asp 返回引用类型函数代码
摘要:复制代码代码如下:

复制代码 代码如下:

<%

set studentinstance = CreateStudent()

if not isnull(studentinstance) then

Response.write("StudentId:"&studentinstance.StudentId&"<Br/>")

Response.write("StudentName:"&studentinstance.StudentName&"<Br/>")

end if

Function CreateStudent()

set stud = new Statudent

stud.StudentId=123

stud.StudentName="Eric liu"

set CreateStudent=stud

End Function

Class Statudent

private id

private name

public property let StudentId(id_)

id=id_

end property

public property get StudentId

StudentId=id

end property

public property let StudentName(name_)

name=name_

end property

public property get StudentName

StudentName=name

end property

End Class

%>

【Asp 返回引用类型函数代码】相关文章:

asp中实现随机分组程序的代码

ASP使用FSO读取模板的代码

asp最常用的分页函数

Asp 函数介绍

保存远程图片函数修改正版

ASP语法高亮类代码

asp 中常用的文件处理函数

ASP编程常用的代码

asp完整登陆代码

asp 获取地址栏参数代码

精品推荐
分类导航