当前位置:编程学习 > 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朋友需要了解的东西

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,