18 lines
393 B
Plaintext
18 lines
393 B
Plaintext
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">
|
|
Sub Session_OnStart
|
|
'Insert script to be executed when a session starts
|
|
End Sub
|
|
|
|
Sub Session_OnEnd
|
|
'Insert script to be executed when a session ends
|
|
End Sub
|
|
|
|
Sub Application_OnStart
|
|
'Insert script to be executed when the application starts
|
|
End Sub
|
|
|
|
Sub Application_OnEnd
|
|
'Insert script to be executed when the application ends
|
|
End Sub
|
|
</SCRIPT>
|