You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
<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>
|