HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/secure/itpplates/global.asa
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Option Explicit

' ===============
' Version No: 2020.06.10
' (SS,10/06/20) First version

Sub Application_OnStart
  Application("ConnectionString") = "DSN=MySQL_itpplates"
End Sub

Sub Application_OnEnd

End Sub

Sub Session_OnStart
  Session.Timeout = 15  ' time out after 15 mins of non-use, not really important here because sessions are irrelevant
  ' Set the server locale to UK, mainly to prevent date problems (day and month being reversed)
  Session.LCID = 2057
End Sub

Sub Session_OnEnd

End Sub


</SCRIPT>