main.asp

来自「WAPmo手机网站管理平台是一款创建与管理维护WAP网站的的软件产品」· ASP 代码 · 共 29 行

ASP
29
字号
<!--#include file="util/main.asp"-->
<!--#include file="WAPmo/main.asp"-->
<%
Class ImplMocom
Private objUtil
Private objWAPmo
Private Sub Class_Initialize()
Set objUtil = Nothing
Set objWAPmo = Nothing
End Sub
Private Sub Class_Terminate()
Set objUtil = Nothing
Set objWAPmo = Nothing
End Sub
Public Property Get util()
If objUtil Is Nothing Then
    Set objUtil = New ImplMocomUtil
End If
Set Util = objUtil
End Property
Public Property Get WAPmo()
If objWAPmo Is Nothing Then
    Set objWAPmo = New ImplMocomWAPmo
End If
Set WAPmo = objWAPmo
End Property
End Class
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?