📄 com.asp
字号:
<%
Class ImplMocomUtilCom
Private clsHash
Private Sub Class_Initialize()
Set clsHash = vbsre.mocom.util.Hash.newInstance()
End Sub
Private Sub Class_Terminate()
clsHash.RemoveAll
Set clsHash = Nothing
End Sub
Public Function forName(ByVal strName)
Dim strKey
strKey = UCase(strName)
If clsHash.Exists(strKey) = False Then
clsHash(strKey) = Server.CreateObject(strName)
End If
Set forName = clsHash(strKey)
End Function
Public Function newInstance()
Set newInstance = New ImplMocomUtilCom
End Function
End Class
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -