discourse-legacysite-perl/site/slowtwitch.com/www/secure/database/global.asa
2024-06-17 22:30:36 +10:00

14 lines
500 B
Plaintext

<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Session_OnStart
'NOTE: The database name must be assigned at the end of the line below.
Session("ConnectString") = "DRIVER={SQL Server};SERVER=SQL2;UID=Webuser;APP=Microsoft(R) Windows NT(TM) Operating System;WSID=P150;DATABASE=****YourDatabase****"
Session("ConnectionTimeout") = 15
Session("CommandTimeout") = 30
Session("RuntimeUser") = "Webuser"
Session("RuntimePass") = "Webuser"
End Sub
</SCRIPT>