• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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 正则实现清除html文本格式的函数代码
    下一篇:ASP Cookies操作的详细介绍与实例代码
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Asp 返回引用类型函数代码 Asp,返回,引用,类型,函数,