Server.CreateObject methodSet obj= Server.CreateObject(progid)
This method creates and returns a COM object specified by progid.
Using Server.CreateObject rather than a language construct (like
CreateObject(progid)
in VBScript, new
ActiveXObject(progid) in JScript,
or $Win32::OLE->new(progid)in
PerlScript) allows IIS to manage the object, by handling
concurrency, termanation, etc.