科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道将VB中的CLASS结合到VBscript中来

将VB中的CLASS结合到VBscript中来

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

<SCRIPT LANGUAGE=vbscript RUNAT=Server> Class clsTest Private m_strTest

作者:www.soft6.com 来源:www.soft6.com 2007年9月25日

关键字: VBScript partial class VB

  • 评论
  • 分享微博
  • 分享邮件

&lt;SCRIPT LANGUAGE=vbscript RUNAT=Server&gt;
Class clsTest
Private m_strTest

Private Sub Class_Initialize()
m_strTest = &quot;VBScript Programming is fun!&quot;
End Sub

Private Function PrivateTest(strTest)
PrivateTest = strReverse(strTest)
End Function

Public Property Get TestProperty()
TestProperty = m_strTest
End Property

Public Property Let TestProperty(strTest)
m_strTest = strTest
End Property

Public Sub Test()
m_strTest = PrivateTest(m_strTest)
End Sub
End Class

Dim objTest
Set objTest = New clsTest

Response.Write objTest.TestProperty &amp; &quot;&lt;BR&gt;&quot;
objTest.Test
Response.Write objTest.TestProperty &amp; &quot;&lt;BR&gt;&quot;
objTest.TestProperty = &quot;Objects are cool!&quot;
Response.Write objTest.TestProperty &amp; &quot;&lt;BR&gt;&quot;
objTest.Test
Response.Write objTest.TestProperty &amp; &quot;&lt;BR&gt;&quot;

Set objTest = Nothing
&lt;/SCRIPT&gt;

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章