home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / global.asa2 < prev    next >
Encoding:
Text File  |  1997-09-05  |  935 b   |  28 lines

  1. <SCRIPT LANGUAGE="VBScript" RUNAT="Server">
  2. ' **** TODO this page actually belongs within the Benefits directory. Waiting for a build
  3. ' that will handle this properly. This is the global.asa for benefits, NOT for the overall
  4. ' ExAir site.
  5.  
  6. Sub Session_OnStart
  7.  
  8. End Sub
  9.  
  10.  
  11. Sub Application_OnStart
  12.  
  13.      Application.Lock
  14.  
  15.     ' Note that this application assumes that the SQLbenefits.dsn file is in the ODBC default 
  16.     ' directory for file DSN locations.
  17.     Application("DSN") = "SQLbenefits.dsn"
  18.     Application("Font1") = "FACE=" & Chr(34) & "VERDANA, ARIAL, HELVETICA" & Chr(34) & " SIZE=2"
  19.     Application("Font2") = "FACE=" & Chr(34) & "VERDANA, ARIAL, HELVETICA" & Chr(34) & " SIZE=2"
  20.     Application("Font3") = "FACE=" & Chr(34) & "VERDANA, ARIAL, HELVETICA" & Chr(34) & " SIZE=3"
  21.     Application("Font5") = "FACE=" & Chr(34) & "VERDANA, ARIAL, HELVETICA" & Chr(34) & " SIZE=5"
  22.  
  23.     Application.Unlock
  24.  
  25. End Sub
  26.  
  27. </SCRIPT>
  28.