File: D:/web/itpartnership/browsertest/global.asa
<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Application_OnStart
Application("WebDebugLogType") = "Both" ' can be Both, Email or File or "" for no log '
Application("WebDebugLogEmail") = "surinder@itpartnership.com" ' set to "" to disable debugging by email'
Application("MailServer") = "mail.itpartnership.com"
End Sub
Sub Application_OnEnd
End Sub
Sub Session_OnStart
Session.Timeout = 180 ' time out after three hours of non-use
' 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>