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>