📄 main.asp
字号:
<!--#include file="index.asp"-->
<!--#include file="forum.asp"-->
<!--#include file="article.asp"-->
<!--#include file="post.asp"-->
<%
Class ImplMocomWAPmoWAPBbs
Private objIndex
Private objForum
Private objArticle
Private objPost
Private Sub Class_Initialize()
Set objIndex = Nothing
Set objForum = Nothing
Set objArticle = Nothing
Set objPost = Nothing
End Sub
Private Sub Class_Terminate()
Set objIndex = Nothing
Set objForum = Nothing
Set objArticle = Nothing
Set objPost = Nothing
End Sub
Public Property Get index()
If objIndex Is Nothing Then
Set objIndex = New ImplMocomWAPmoWAPBbsIndex
End If
Set Index = objIndex
End Property
Public Property Get forum()
If objForum Is Nothing Then
Set objForum = New ImplMocomWAPmoWAPBbsForum
End If
Set Forum = objForum
End Property
Public Property Get article()
If objArticle Is Nothing Then
Set objArticle = New ImplMocomWAPmoWAPBbsArticle
End If
Set Article = objArticle
End Property
Public Property Get post()
If objPost Is Nothing Then
Set objPost = New ImplMocomWAPmoWAPBbsPost
End If
Set Post = objPost
End Property
End Class
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -