Help > Web Development > Object Reference > Object Reference > ISYSAsp > OpenAgents Method
<a name="kanchor246"></a>ISYSAsp:OpenAgents Method
Opens the specified path and returns an Intelligent Agent Manager for that folder.

Syntax
[VBScript]
function ISYSAsp.OpenAgents(_
  string Path_ 
) as ISYSIntelligentAgentManager
[C#]
IISYSIntelligentAgentManager  IISYSEngine.OpenAgents(
  string Path
);
[ColdFusion/Java]
IISYSIntelligentAgentManager  IISYSAsp.OpenAgents(
  java.lang.String Path
) throws ComException;
Parameters
PathThe path that contains the agents that you wish to open

Examples
[VBScript]
<% set agents = Application("ISYS").OpenAgents("c:\agents\" & _ Request.ServerVariables("AUTH_USER") ) %>