I have a login page which authenticate with AD. My problem is, when more than 700 users login to intranet on my webserver at the same time, the connection with the AD will be lost. But on my development server, I can still can access to my intranet which authenticate with AD.
The settings on my AD which allow more than 10,000 users to connect. So why is this happen? Is my ASP script problem or the AD server problem? This is my script

if (not strADsPath= "") then

Dim oADsObject
Set oADsObject = GetObject(strADsPath)

Dim strADsNamespace
Dim oADsNamespace
strADsNamespace = left(strADsPath, instr(strADsPath, ":"))
set oADsNamespace = GetObject(strADsNamespace)

Set oADsObject = oADsNamespace.OpenDSObject(strADsPath, strUserName, strPassword, 0)
....

Please Help!