home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 27 / IOPROG_27.ISO / SOFT / ADSDK.ZIP / Samples / ASP / WAB / global.asa < prev    next >
Encoding:
Text File  |  1999-03-11  |  548 b   |  20 lines

  1. <SCRIPT LANGUAGE=VBScript RUNAT=Server> 
  2. Sub Application_OnStart
  3.  
  4.  '---- To optimize the performance, we hard code the GC servers --------
  5.  '---- To correct way always uses the GC://domain.name.com----------------
  6.  '---- More investigate on the DNS looks up performance issue-------------
  7.  '---- For now, we are randomizing the GC --------------------------------
  8.    Session("ADsDomain") = "ntdev.microsoft.com"
  9.    Application("UserID") = "NTDEV\userName"
  10.    Application("Password") = "yourPasswordHere"
  11.  
  12. End Sub
  13.  
  14.  
  15.  
  16.  
  17. </SCRIPT>
  18.  
  19.  
  20.