
12/06/2007, 13:21
|
 | Colaborador | | Fecha de Ingreso: enero-2002 Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses Puntos: 146 | |
Re: Constructor de clase en ASP efectivamente, ejemplo:
Código:
....
'Constructor
Private Sub Class_Initialize()
HoraAcceso = Now()
set objDicPantallas = Server.CreateObject("Scripting.Dictionary")
End Sub
'Destructor
Private Sub Class_Terminate()
Set objDicPantallas = Nothing
End Sub
....
|