📄 main.asp
字号:
<!--#include file="WAPmo/main.asp"-->
<!--#include file="util/main.asp"-->
<%
Class ImplMocom
Private objWAPmo
Private objUtil
Private Sub Class_Initialize()
Set objWAPmo = Nothing
Set objUtil = Nothing
End Sub
Private Sub Class_Terminate()
Set objWAPmo = Nothing
Set objUtil = Nothing
End Sub
Public Property Get WAPmo()
If objWAPmo Is Nothing Then
Set objWAPmo = New ImplMocomWAPmo
End If
Set WAPmo = objWAPmo
End Property
Public Property Get util()
If objUtil Is Nothing Then
Set objUtil = New ImplMocomUtil
End If
Set Util = objUtil
End Property
End Class
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -